Zomato Bangalore Data Analysis with Python

1_OLtNR7kUtIKG7Ovj3TNMzQ.jpeg

Adarsh , Jaskaran , Sanjana , Vidhi

In [81]:
%autosave 0
import pandas as pd 
import numpy as np
import matplotlib.pyplot as plt 
import matplotlib.image as mpimg 
import seaborn as sns
import pandas_profiling
from pandas_profiling import ProfileReport
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
from sklearn.model_selection import train_test_split
import warnings
warnings.filterwarnings('ignore')
%matplotlib inline
Autosave disabled

Loading the dataset: Load the data and import the libraries.

In [82]:
zomato_df= pd.read_csv("zomato.csv")
zomato_df.head()
zomato_df.shape
Out[82]:
url address name online_order book_table rate votes phone location rest_type dish_liked cuisines approx_cost(for two people) reviews_list menu_item listed_in(type) listed_in(city)
0 https://www.zomato.com/bangalore/jalsa-banasha... 942, 21st Main Road, 2nd Stage, Banashankari, ... Jalsa Yes Yes 4.1/5 775 080 42297555\r\n+91 9743772233 Banashankari Casual Dining Pasta, Lunch Buffet, Masala Papad, Paneer Laja... North Indian, Mughlai, Chinese 800 [('Rated 4.0', 'RATED\n A beautiful place to ... [] Buffet Banashankari
1 https://www.zomato.com/bangalore/spice-elephan... 2nd Floor, 80 Feet Road, Near Big Bazaar, 6th ... Spice Elephant Yes No 4.1/5 787 080 41714161 Banashankari Casual Dining Momos, Lunch Buffet, Chocolate Nirvana, Thai G... Chinese, North Indian, Thai 800 [('Rated 4.0', 'RATED\n Had been here for din... [] Buffet Banashankari
2 https://www.zomato.com/SanchurroBangalore?cont... 1112, Next to KIMS Medical College, 17th Cross... San Churro Cafe Yes No 3.8/5 918 +91 9663487993 Banashankari Cafe, Casual Dining Churros, Cannelloni, Minestrone Soup, Hot Choc... Cafe, Mexican, Italian 800 [('Rated 3.0', "RATED\n Ambience is not that ... [] Buffet Banashankari
3 https://www.zomato.com/bangalore/addhuri-udupi... 1st Floor, Annakuteera, 3rd Stage, Banashankar... Addhuri Udupi Bhojana No No 3.7/5 88 +91 9620009302 Banashankari Quick Bites Masala Dosa South Indian, North Indian 300 [('Rated 4.0', "RATED\n Great food and proper... [] Buffet Banashankari
4 https://www.zomato.com/bangalore/grand-village... 10, 3rd Floor, Lakshmi Associates, Gandhi Baza... Grand Village No No 3.8/5 166 +91 8026612447\r\n+91 9901210005 Basavanagudi Casual Dining Panipuri, Gol Gappe North Indian, Rajasthani 600 [('Rated 4.0', 'RATED\n Very good restaurant ... [] Buffet Banashankari
Out[82]:
(51717, 17)

Data Description

  • url : contains the url of the restaurant in the zomato website

  • address: contains the address of the restaurant in Bengaluru

  • name: contains the name of the restaurant

  • online_order: whether online ordering is available in the restaurant or not

  • book_table: table book option available or not

  • rate: contains the overall rating of the restaurant out of 5

  • votes: contains total number of rating for the restaurant as of the above mentioned date

  • phone: contains the phone number of the restaurant

  • location: contains the neighborhood in which the restaurant is located

  • rest_type: restaurant type

  • dish_liked: dishes people liked in the restaurant

  • cuisines: food styles, separated by comma

  • approx_cost(for two people): contains the approximate cost for meal for two people

  • reviews_list: list of tuples containing reviews for the restaurant, each tuple

  • menu_item contains: list of menus available in the restaurant

  • listed_in(type): type of meal

  • listed_in(city): contains the neighborhood in which the restaurant is listed

The names of columns are a bit non descriptive and confusing so its better to rename some of these columns

In [83]:
zomato_df.columns = ['Website',
             'Restaurant_Address',
             'Restaurant_Name',
             'Online_Order',
             'Book_table',
             'Rating',
             'Votes',
             'Contact',
             'Location',
             'Type_of_Restaurant',
             'Most_Liked_Dishes',
             'Cuisine',
             'Approx_Cost_FOR_2',
             'Reviews',
             'Menu',
             'Restaurant_Type_Main',
             'listed_in(city)',
             ]
zomato_df.head()
Out[83]:
Website Restaurant_Address Restaurant_Name Online_Order Book_table Rating Votes Contact Location Type_of_Restaurant Most_Liked_Dishes Cuisine Approx_Cost_FOR_2 Reviews Menu Restaurant_Type_Main listed_in(city)
0 https://www.zomato.com/bangalore/jalsa-banasha... 942, 21st Main Road, 2nd Stage, Banashankari, ... Jalsa Yes Yes 4.1/5 775 080 42297555\r\n+91 9743772233 Banashankari Casual Dining Pasta, Lunch Buffet, Masala Papad, Paneer Laja... North Indian, Mughlai, Chinese 800 [('Rated 4.0', 'RATED\n A beautiful place to ... [] Buffet Banashankari
1 https://www.zomato.com/bangalore/spice-elephan... 2nd Floor, 80 Feet Road, Near Big Bazaar, 6th ... Spice Elephant Yes No 4.1/5 787 080 41714161 Banashankari Casual Dining Momos, Lunch Buffet, Chocolate Nirvana, Thai G... Chinese, North Indian, Thai 800 [('Rated 4.0', 'RATED\n Had been here for din... [] Buffet Banashankari
2 https://www.zomato.com/SanchurroBangalore?cont... 1112, Next to KIMS Medical College, 17th Cross... San Churro Cafe Yes No 3.8/5 918 +91 9663487993 Banashankari Cafe, Casual Dining Churros, Cannelloni, Minestrone Soup, Hot Choc... Cafe, Mexican, Italian 800 [('Rated 3.0', "RATED\n Ambience is not that ... [] Buffet Banashankari
3 https://www.zomato.com/bangalore/addhuri-udupi... 1st Floor, Annakuteera, 3rd Stage, Banashankar... Addhuri Udupi Bhojana No No 3.7/5 88 +91 9620009302 Banashankari Quick Bites Masala Dosa South Indian, North Indian 300 [('Rated 4.0', "RATED\n Great food and proper... [] Buffet Banashankari
4 https://www.zomato.com/bangalore/grand-village... 10, 3rd Floor, Lakshmi Associates, Gandhi Baza... Grand Village No No 3.8/5 166 +91 8026612447\r\n+91 9901210005 Basavanagudi Casual Dining Panipuri, Gol Gappe North Indian, Rajasthani 600 [('Rated 4.0', 'RATED\n Very good restaurant ... [] Buffet Banashankari

If you look closely at each column of the dataframe closely you will notice that there are some columns that won't contribute to the ratings and reviews. The url or the full address of the restaurant or their phone number can't justify their ratings or reviews.

In [84]:
zomato_df.drop(columns='Most_Liked_Dishes',inplace=True)
zomato_df.drop(columns='Contact',inplace=True)
zomato_df.drop(columns='Website',inplace=True)
zomato_df.drop(columns='Menu',inplace=True)
zomato_df.drop(columns='Restaurant_Address',inplace=True)

We are going to remove duplicates data when the entire rows is duplicated .

As same name could be available for other meal types and hence other ratings and average cost (this is a chain restaurant) .

In [85]:
zomato_df.drop_duplicates(inplace=True)

As we notice around 50 % of data will be lost if we delete the nan values in dish_liked column .

We will keep that column for now , let's check for rate column as it contains 15% of its points as null value

In [86]:
zomato_df.dropna(how='any',inplace=True)
zomato_df.dropna(how='any',inplace=True)
len(zomato_df[zomato_df.Rating.isnull()])
len(zomato_df[zomato_df.Rating.isna()])
Out[86]:
0
Out[86]:
0
In [87]:
zomato_df.dropna(how='any',inplace=True)
zomato_df.dropna(how='any',inplace=True)

Note, that only the address column is omitted from the dataframe and not the location column,because location details in location column can be very useful in extracting the information about the restaurants. Also,location and listed_in(city) are the same columns.So, we drop the listed_in(city) column.

In [88]:
zomato_df.drop(columns='listed_in(city)',inplace=True)
In [89]:
len(zomato_df)
Out[89]:
43480

As you can see the rate column is string type with an extra /5 with all the ratings. This should be cleaned. We found this column has 'NEW' ,"-" values which should replaced by np.nan. It is important to convert the string back to float .

In [90]:
zomato_df['Rating'] = zomato_df['Rating'].astype(str)
zomato_df['Rating'] = zomato_df['Rating'].apply(lambda x: x.split('/')[0])
zomato_df['Rating'] = zomato_df['Rating'].apply(lambda x: x.replace('NEW', str(np.nan)))
zomato_df['Rating'] = zomato_df['Rating'].apply(lambda x: x.replace('-', str(np.nan)))
zomato_df['Rating'] = zomato_df['Rating'].astype(float)

The Restaurant_Name has some giberish symbols such as (©,Â) . This should be cleaned .

In [91]:
zomato_df['Restaurant_Name'] = zomato_df['Restaurant_Name'].astype(str)
zomato_df['Restaurant_Name'] = zomato_df['Restaurant_Name'].apply(lambda x: x.split('©')[0])
zomato_df['Restaurant_Name'] = zomato_df['Restaurant_Name'].apply(lambda x: x.split('Â')[0])

Type of the Restaurant

In [92]:
zomato_df['Type_of_Restaurant'] = zomato_df['Type_of_Restaurant'].str.replace(',' , '') 
zomato_df['Type_of_Restaurant'] = zomato_df['Type_of_Restaurant'].astype(str).apply(lambda x: ' '.join(sorted(x.split())))

Cleaning the Approx_Cost_FOR_2 and Cuisine coloumn replacing ( , ) .

In [93]:
remove_comma = lambda x: int(x.replace(',', '')) if type(x) == np.str and x != np.nan else x 
zomato_df.Votes = zomato_df.Votes.astype('int')
zomato_df['Approx_Cost_FOR_2'] = zomato_df['Approx_Cost_FOR_2'].apply(remove_comma)
zomato_df['Cuisine'] = zomato_df['Cuisine'].str.replace(',' , '') 
zomato_df['Cuisine'] = zomato_df['Cuisine'].astype(str).apply(lambda x: ' '.join(sorted(x.split())))

Cleaning the Reviews coloumn by using the substring function .

In [94]:
zomato_df.Reviews= zomato_df.Reviews.str.slice(start=25)

Online_order & Book_table presented as strings instead of bools (working with True/False make it easier to analyze)

In [95]:
zomato_df.Online_Order.replace(to_replace='Yes', value=1.0, inplace=True)
zomato_df.Online_Order.replace(to_replace='No', value=0.0, inplace=True)
zomato_df.Book_table.replace(to_replace='Yes', value=1.0, inplace=True)
zomato_df.Book_table.replace(to_replace='No', value=0.0, inplace=True)
zomato_df.head()
zomato_df.shape
Out[95]:
Restaurant_Name Online_Order Book_table Rating Votes Location Type_of_Restaurant Cuisine Approx_Cost_FOR_2 Reviews Restaurant_Type_Main
0 Jalsa 1.0 1.0 4.1 775 Banashankari Casual Dining Chinese Indian Mughlai North 800 A beautiful place to dine in.The interiors tak... Buffet
1 Spice Elephant 1.0 0.0 4.1 787 Banashankari Casual Dining Chinese Indian North Thai 800 Had been here for dinner with family. Turned o... Buffet
2 San Churro Cafe 1.0 0.0 3.8 918 Banashankari Cafe Casual Dining Cafe Italian Mexican 800 Ambience is not that good enough and it's not ... Buffet
3 Addhuri Udupi Bhojana 0.0 0.0 3.7 88 Banashankari Bites Quick Indian Indian North South 300 Great food and proper Karnataka style full mea... Buffet
4 Grand Village 0.0 0.0 3.8 166 Basavanagudi Casual Dining Indian North Rajasthani 600 Very good restaurant in neighbourhood. Buffet ... Buffet
Out[95]:
(43480, 11)

Fact 1: The higher the number of services/cuisines provided by a restaurant, more likely it is to receive higher ratings.

Almost 90 percent of restaurants in Banglore do not provide table booking facility. In India you cannot find table booking facility in any average restaurants,usually only five star restaurants provides table booking. We will inspect this further.

In [96]:
zomato_df_cpy =  zomato_df.copy()
In [97]:
zomato_df_cpy.head(1)
Out[97]:
Restaurant_Name Online_Order Book_table Rating Votes Location Type_of_Restaurant Cuisine Approx_Cost_FOR_2 Reviews Restaurant_Type_Main
0 Jalsa 1.0 1.0 4.1 775 Banashankari Casual Dining Chinese Indian Mughlai North 800 A beautiful place to dine in.The interiors tak... Buffet
In [98]:
with plt.style.context('bmh', after_reset = True):
    sns.set(rc={'figure.figsize':(11.7,10.27)})
    plt.figure(figsize = (12,4))
    ax = plt.subplot(1,1,1)
    tmp = {}
    for col in ['Book_table', 'Online_Order']: 
        tmp[col] = zomato_df_cpy[col].value_counts()
    tmp = pd.DataFrame.from_dict(tmp, orient = 'index')
    tmp.plot.barh(stacked = True, ax = ax)

    ax.set_title('Number of Restaurants with Service 0:No, 1:Yes')
    plt.show()
Out[98]:
<Figure size 1200x400 with 0 Axes>
Out[98]:
<matplotlib.axes._subplots.AxesSubplot at 0x16461393dd8>
Out[98]:
Text(0.5, 1.0, 'Number of Restaurants with Service 0:No, 1:Yes')
In [188]:
def func(r):
    # 1 : Only Deliver, 2: Del + Book 3: Only Book 4: Both OK
    i, j = r.Book_table, r.Online_Order
    if i == 0 and j == 0: return 'Both N'
    elif i == 0 and j == 1: return 'Deli'
    elif i == 1 and j == 0: return 'Book'
    else: return 'Both Y'
zomato_df_cpy['service_pos'] = zomato_df_cpy[['Book_table', 'Online_Order']].apply(func, axis = 1)

with plt.style.context('bmh', after_reset = True):
    sns.set(rc={'figure.figsize':(14.7,14.27)})

    g = sns.FacetGrid(data = zomato_df_cpy, hue = 'service_pos', hue_order = ['Both N', 'Deli', 'Book', 'Both Y'], palette = "inferno", size = 3, aspect = 3)
    g.map(sns.distplot, 'Rating')
    plt.legend(loc=1)
    plt.subplots_adjust(top=0.9)
    g.fig.suptitle('Rating Distribution V/S Number of Services Offered (Book Table / Online Delivery )')
    plt.show()
 #   
zomato_df_cpy1['rating_cat'] = zomato_df_cpy1['Rating'].round(0).astype(int)    
zomato_df_cpy1['Cuisine'] = zomato_df_cpy1['Cuisine']
zomato_df_cpy1['fusion_num'] = zomato_df_cpy1['Cuisine'].apply(lambda x: len(x.split(' ')))

from collections import Counter
lst_cuisine = set()
Cnt_cuisine = Counter()
for cu_lst in zomato_df_cpy1['Cuisine']:
    cu_lst = cu_lst.split(' ')
    lst_cuisine.update([cu.strip() for cu in cu_lst])
    for cu in cu_lst:
        Cnt_cuisine[cu.strip()] += 1

cnt = pd.DataFrame.from_dict(Cnt_cuisine, orient = 'index')
cnt.sort_values(0, ascending = False, inplace = True)

tmp_cnt = cnt.head(10)
tmp_cnt.rename(columns = {0:'cnt'}, inplace = True)
with plt.style.context('bmh'):
   # f = plt.figure(figsize = (12, 8))
   # ax = plt.subplot2grid((2,2), (0,0))
   
    ax.tick_params(axis='x', rotation=70)
    ax = plt.subplot2grid((2,2), (0,0))
    sns.countplot(zomato_df_cpy1['fusion_num'], ax=ax, palette = sns.color_palette('inferno', zomato_df_cpy1.fusion_num.nunique()))
    ax.set_title('# Cuisine Provided')
    ax.set_ylabel('')

tmp_cnt = cnt.head(10)
tmp_cnt.rename(columns = {0:'cnt'}, inplace = True)
with plt.style.context('bmh'):
    sns.set(rc={'figure.figsize':(14.7,15.27)})
    ax = plt.subplot2grid((2,2), (1,0), colspan = 2)
    fusion_rate = zomato_df_cpy1[['fusion_num', 'rating_cat', 'Rating']].copy()
    fusion_rate.loc[fusion_rate['fusion_num'] > 5,'fusion_num'] = 5
    fusion_rate = fusion_rate.loc[fusion_rate.rating_cat != -1, :]
    pal = sns.color_palette('inferno', 12)
    for i in range(1,6):
        num_ix = fusion_rate['fusion_num'] == i
        sns.distplot(fusion_rate.loc[num_ix, 'Rating'], color = pal[i*2], label = str(i),rug=True )
        plt.ylim(0, 2)
        plt.xlim(1, 5)
        ax.legend()
        ax.set_title('Rating Distribution V/S Number of Cuisine Offered')
        
plt.show()        
print('# Unique Cuisine: ', len(lst_cuisine))  
 
    
Out[188]:
<seaborn.axisgrid.FacetGrid at 0x1645e28c550>
Out[188]:
<matplotlib.legend.Legend at 0x164594e0320>
Out[188]:
Text(0.5, 0.98, 'Rating Distribution V/S Number of Services Offered (Book Table / Online Delivery )')
Out[188]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647b7cfd68>
Out[188]:
Text(0.5, 1.0, '# Cuisine Provided')
Out[188]:
Text(0, 0.5, '')
Out[188]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647b741080>
Out[188]:
(0, 2)
Out[188]:
(1, 5)
Out[188]:
<matplotlib.legend.Legend at 0x1645e953b38>
Out[188]:
Text(0.5, 1.0, 'Rating Distribution V/S Number of Cuisine Offered')
Out[188]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647b741080>
Out[188]:
(0, 2)
Out[188]:
(1, 5)
Out[188]:
<matplotlib.legend.Legend at 0x164d19916a0>
Out[188]:
Text(0.5, 1.0, 'Rating Distribution V/S Number of Cuisine Offered')
Out[188]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647b741080>
Out[188]:
(0, 2)
Out[188]:
(1, 5)
Out[188]:
<matplotlib.legend.Legend at 0x164d70ab5f8>
Out[188]:
Text(0.5, 1.0, 'Rating Distribution V/S Number of Cuisine Offered')
Out[188]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647b741080>
Out[188]:
(0, 2)
Out[188]:
(1, 5)
Out[188]:
<matplotlib.legend.Legend at 0x1645e9695c0>
Out[188]:
Text(0.5, 1.0, 'Rating Distribution V/S Number of Cuisine Offered')
Out[188]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647b741080>
Out[188]:
(0, 2)
Out[188]:
(1, 5)
Out[188]:
<matplotlib.legend.Legend at 0x164d7b00e10>
Out[188]:
Text(0.5, 1.0, 'Rating Distribution V/S Number of Cuisine Offered')
# Unique Cuisine:  112

Managerial Insight:

Restaurants having more features like - Dine-out(table booking), delivery(online ordering), Pubs, Bars, Drinks,Buffet, Desserts and more than one cuisine offerings have very high ratings irrespective of the location and price.

In [100]:
Cafe_df = zomato_df[zomato_df.Type_of_Restaurant.apply(lambda x: 'Cafe' in x)]
In [101]:
Cafe_df.head(1)
Out[101]:
Restaurant_Name Online_Order Book_table Rating Votes Location Type_of_Restaurant Cuisine Approx_Cost_FOR_2 Reviews Restaurant_Type_Main
2 San Churro Cafe 1.0 0.0 3.8 918 Banashankari Cafe Casual Dining Cafe Italian Mexican 800 Ambience is not that good enough and it's not ... Buffet
In [102]:
#Finding the correlation of rating and approximation cost of 2 for cafe dataset
correlation = Cafe_df.groupby('Restaurant_Name',as_index=False)[['Approx_Cost_FOR_2','Rating']].\
mean().round(2).sort_values(ascending=False,by='Rating')
#plot scatter graph to analyse correlation
weight = correlation['Rating']
height = correlation['Approx_Cost_FOR_2']
plt.figure(figsize=(10,8))
plt.scatter(weight,height,c='g',marker='o')
plt.xlabel('Average Rating')
plt.ylabel('Average Cost')
plt.title('Average Rating Vs Average Cost for Coffee Shops')
plt.show()
Out[102]:
<Figure size 720x576 with 0 Axes>
Out[102]:
<matplotlib.collections.PathCollection at 0x1647cc846a0>
Out[102]:
Text(0.5, 0, 'Average Rating')
Out[102]:
Text(0, 0.5, 'Average Cost')
Out[102]:
Text(0.5, 1.0, 'Average Rating Vs Average Cost for Coffee Shops')
In [103]:
top_cafe_df = Cafe_df.groupby('Restaurant_Name',as_index=False)[['Rating','Approx_Cost_FOR_2']]\
            .mean().round(2).sort_values(ascending=False,by='Rating').head(15)
In [104]:
#Top rated coffeee shops
top_coffee_shops=top_cafe_df[top_cafe_df['Rating'] >= 4.0]\
.sort_values(ascending=False,by='Rating')
top_coffee_shops.head()
Out[104]:
Restaurant_Name Rating Approx_Cost_FOR_2
186 ECHOES Koramangala 4.70 750.0
223 Hammered 4.66 1285.0
273 Lot Like Crepes 4.62 550.0
58 Brik Oven 4.60 1100.0
230 Here & Now 4.60 750.0
In [105]:
expensive_coffee_shops=Cafe_df.groupby('Restaurant_Name',as_index=False)[['Approx_Cost_FOR_2','Rating']].\
mean().round(2).sort_values(ascending=False,by='Approx_Cost_FOR_2').head(15)
In [106]:
def prettyprint_spines(ax, right_border=True): 
    ax.spines['bottom'].set_color('#CCCCCC')
    ax.spines['left'].set_color('#CCCCCC')
    ax.spines['top'].set_visible(False)
    if right_border:
        ax.spines['right'].set_color('#CCCCCC')
    else:
        ax.spines['right'].set_color('#FFFFFF')
    ax.patch.set_facecolor('#FFFFFF')
In [107]:
fig, ax = plt.subplots(figsize=(15, 9))
sns.barplot(x='Restaurant_Name', y='Rating', data=top_coffee_shops, ax=ax, palette='PuBu')
ax2 = ax.twinx()
sns.lineplot(x='Restaurant_Name', y='Approx_Cost_FOR_2', data=top_coffee_shops, ax=ax2, color='crimson', sort=False)

ax.tick_params(axis='x', labelrotation=90)
prettyprint_spines(ax, right_border=True)
prettyprint_spines(ax2, right_border=True)
ax.xaxis.set_label_text("")

xs = np.arange(0,20,1)
ys = top_coffee_shops['Approx_Cost_FOR_2']

for x,y in zip(xs,ys):
    label = "{:.2f}".format(y)
    plt.annotate(label, # this is the text
                 (x,y), # this is the point to label
                 textcoords="offset points", # how to position the text
                 xytext=(0,10), # distance from text to points (x,y)
                 ha='center', # horizontal alignment can be left, right or center
                 color='black',
                 clip_on=True)
ax.set_title('Top Rated Coffee Shops in Banglore', size=14)
ax.set_ylabel('Rating')
ax2.set_ylabel('Approx Cost For Two')
plt.tight_layout()
plt.show()


#Newly added code
#Expensive Local Coffee Shops in Banglore
fig, ax = plt.subplots(figsize=(15, 10))
sns.barplot(x='Restaurant_Name', y='Approx_Cost_FOR_2', data=expensive_coffee_shops, ax=ax, palette='PuBu')
ax2 = ax.twinx()
sns.lineplot(x='Restaurant_Name', y='Rating', data=expensive_coffee_shops, ax=ax2, color='crimson', sort=False)

ax.tick_params(axis='x', labelrotation=90)
prettyprint_spines(ax, right_border=True)
prettyprint_spines(ax2, right_border=True)
ax.xaxis.set_label_text("")

xs = np.arange(0,20,1)
ys = expensive_coffee_shops['Rating']

for x,y in zip(xs,ys):
    label = "{:.2f}".format(y)
    plt.annotate(label, # text
                 (x,y), # this is the point to label
                 textcoords="offset points", # how to position the text
                 xytext=(0,10), # distance from text to points (x,y)
                 ha='center', # horizontal alignment can be left, right or center
                 color='black',
                 clip_on=True)
ax.set_title('Expensive Local Coffee Shops in Banglore', size=14)
ax.set_ylabel('Approx Cost for two')
ax2.set_ylabel('Rating')
plt.tight_layout()
plt.show()
Out[107]:
<matplotlib.axes._subplots.AxesSubplot at 0x1645dc8f9b0>
Out[107]:
<matplotlib.axes._subplots.AxesSubplot at 0x1645e22a710>
Out[107]:
Text(0.5, 0, '')
Out[107]:
Text(0, 10, '750.00')
Out[107]:
Text(0, 10, '1285.00')
Out[107]:
Text(0, 10, '550.00')
Out[107]:
Text(0, 10, '1100.00')
Out[107]:
Text(0, 10, '750.00')
Out[107]:
Text(0, 10, '600.00')
Out[107]:
Text(0, 10, '400.00')
Out[107]:
Text(0, 10, '900.00')
Out[107]:
Text(0, 10, '900.00')
Out[107]:
Text(0, 10, '650.00')
Out[107]:
Text(0, 10, '600.00')
Out[107]:
Text(0, 10, '800.00')
Out[107]:
Text(0, 10, '325.00')
Out[107]:
Text(0, 10, '900.00')
Out[107]:
Text(0, 10, '200.00')
Out[107]:
Text(0.5, 1.0, 'Top Rated Coffee Shops in Banglore')
Out[107]:
Text(0, 0.5, 'Rating')
Out[107]:
Text(0, 0.5, 'Approx Cost For Two')
Out[107]:
<matplotlib.axes._subplots.AxesSubplot at 0x1645dceae48>
Out[107]:
<matplotlib.axes._subplots.AxesSubplot at 0x1645e364940>
Out[107]:
Text(0.5, 0, '')
Out[107]:
Text(0, 10, '4.10')
Out[107]:
Text(0, 10, '3.80')
Out[107]:
Text(0, 10, '4.20')
Out[107]:
Text(0, 10, '3.80')
Out[107]:
Text(0, 10, '3.99')
Out[107]:
Text(0, 10, '4.30')
Out[107]:
Text(0, 10, '4.31')
Out[107]:
Text(0, 10, '4.41')
Out[107]:
Text(0, 10, '4.08')
Out[107]:
Text(0, 10, '4.27')
Out[107]:
Text(0, 10, '4.00')
Out[107]:
Text(0, 10, '4.66')
Out[107]:
Text(0, 10, '4.09')
Out[107]:
Text(0, 10, '4.10')
Out[107]:
Text(0, 10, '4.24')
Out[107]:
Text(0.5, 1.0, 'Expensive Local Coffee Shops in Banglore')
Out[107]:
Text(0, 0.5, 'Approx Cost for two')
Out[107]:
Text(0, 0.5, 'Rating')

Let's see which local coffee shops are costly and higly rated both:

In [108]:
#Using set, we can find out if there is any common Restaurants between top rated coffee shop and exensive coffee shop
commonrestaurants_intersection = set(top_coffee_shops['Restaurant_Name'])&set(expensive_coffee_shops['Restaurant_Name'])
commonrestaurants_intersection
len(commonrestaurants_intersection)
Out[108]:
{'Hammered'}
Out[108]:
1

Managerial Insight:

Comparing the top rated and most expensive coffee shops in Bnaglore, we note that only 5 Restaurants are common in both amongst the top 30 coffee places. This dismisses the belief that well known coffee shops are always expensive.

Fact 3: Drinks & Nightlife has the highest positive sentiment amongst customers in the top 15 locations in Bangalore

In [109]:
zomato_df_cpy =  zomato_df.copy()
In [110]:
zomato_df_cpy.Location.value_counts().head(10)
Out[110]:
BTM                      4201
Koramangala 5th Block    2357
HSR                      2101
Indiranagar              1888
JP Nagar                 1841
Jayanagar                1709
Whitefield               1677
Marathahalli             1470
Bannerghatta Road        1312
Koramangala 6th Block    1086
Name: Location, dtype: int64
In [111]:
res_sort = zomato_df_cpy.groupby('Location')['Restaurant_Name'].count().sort_values(ascending = False)
res_sort = pd.DataFrame({'Location': res_sort.index, 'Restaurants': res_sort.values})
plt.figure(figsize=(10,6))
sns.barplot(y= res_sort[:15].Location,x=res_sort[:15].Restaurants,data = res_sort)
plt.show()
Out[111]:
<Figure size 720x432 with 0 Axes>
Out[111]:
<matplotlib.axes._subplots.AxesSubplot at 0x1647cbfc898>
In [112]:
zomato_df_cpy['Rating_text']=pd.cut(zomato_df_cpy["Rating"],bins = [0, 2, 3, 3.5, 4,4.5,6],
                                  labels = ["Not Rated", "Poor", "Average", "Good","Very Good", "Excelent",])
In [113]:
top15cities=zomato_df_cpy.Location.value_counts().head(15).index

cities = zomato_df_cpy.loc[zomato_df_cpy['Location'].isin(top15cities)]
In [114]:
total_restro = cities.groupby(['Location'], as_index=False).count()[['Location','Restaurant_Name']]
total_restro.columns=['Location','Total Restaurants']
In [115]:
top15rest = cities.groupby(['Location','Rating_text'], as_index=False)[['Restaurant_Name']].count()
top15rest.columns=['Location','Rating', 'Total Ratings']
In [116]:
top15restro_rating_percent = pd.merge(total_restro, top15rest, on='Location')
top15restro_rating_percent['Percentage']= (top15restro_rating_percent['Total Ratings']/
                                       top15restro_rating_percent['Total Restaurants'])*100

top15restro_rating_percent.head()
Out[116]:
Location Total Restaurants Rating Total Ratings Percentage
0 BTM 4201 Not Rated NaN NaN
1 BTM 4201 Poor 318.0 7.569626
2 BTM 4201 Average 1411.0 33.587241
3 BTM 4201 Good 1841.0 43.822899
4 BTM 4201 Very Good 294.0 6.998334
In [117]:
last15cities=zomato_df_cpy.Location.value_counts().tail(15).index

cities_location = zomato_df_cpy.loc[zomato_df_cpy['Location'].isin(last15cities)]
In [118]:
total_resturant = cities_location.groupby(['Location'], as_index=False).count()[['Location','Restaurant_Name']]
total_resturant.columns=['Location','Total Restaurants']
In [119]:
last15resturant = cities_location.groupby(['Location','Rating_text'], as_index=False)[['Restaurant_Name']].count()
last15resturant.columns=['Location','Rating', 'Total Ratings']
In [120]:
last15resturant_rating_percent = pd.merge(total_resturant, last15resturant, on='Location')
last15resturant_rating_percent['Percentage']= (last15resturant_rating_percent['Total Ratings']/
                                       last15resturant_rating_percent['Total Restaurants'])*100

last15resturant_rating_percent.head()
Out[120]:
Location Total Restaurants Rating Total Ratings Percentage
0 Central Bangalore 8 Not Rated NaN NaN
1 Central Bangalore 8 Poor NaN NaN
2 Central Bangalore 8 Average NaN NaN
3 Central Bangalore 8 Good 8.0 100.0
4 Central Bangalore 8 Very Good NaN NaN
In [121]:
#Plot Rating percentage of restaurants in top 15 Locations
fig, axx =plt.subplots(figsize=(18,7))
axx.set_title("Percentage Rating of Restaurants in Top 15 Locations")
sns.barplot(x='Location', y='Percentage',hue='Rating', data=top15restro_rating_percent, palette='Set1')
plt.xticks(rotation=90)
#Plot Rating percentage of restaurants in last 15 Locations
fig, axx =plt.subplots(figsize=(18,7))
axx.set_title("Percentage Rating of Restaurants in Last 15 Locations")
sns.barplot(x='Location', y='Percentage',hue='Rating', data=last15resturant_rating_percent, palette='Set1')
plt.xticks(rotation=90)
Out[121]:
Text(0.5, 1.0, 'Percentage Rating of Restaurants in Top 15 Locations')
Out[121]:
<matplotlib.axes._subplots.AxesSubplot at 0x164d1d99c88>
Out[121]:
(array([ 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14]),
 <a list of 15 Text xticklabel objects>)
Out[121]:
Text(0.5, 1.0, 'Percentage Rating of Restaurants in Last 15 Locations')
Out[121]:
<matplotlib.axes._subplots.AxesSubplot at 0x164d2433eb8>
Out[121]:
(array([ 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14]),
 <a list of 15 Text xticklabel objects>)
In [122]:
g = sns.lmplot('Approx_Cost_FOR_2', 'Rating', col='Restaurant_Type_Main', data=zomato_df, x_estimator=np.mean,
               markers=".", scatter_kws=dict(color='c'),sharex=False,sharey=False)
sns.set(rc={'figure.figsize':(11.7,10.27)})
g.map(plt.axhline, color="k", ls=":");
In [123]:
total_restauranttype = cities.groupby(['Restaurant_Type_Main'], as_index=False).count()[['Restaurant_Type_Main','Restaurant_Name']]
total_restauranttype.columns=['Restaurant_Type_Main','Total Restaurants']
In [124]:
top15restauranttype = cities.groupby(['Restaurant_Type_Main','Rating_text'], as_index=False)[['Restaurant_Name']].count()
top15restauranttype.columns=['Restaurant_Type_Main','Rating', 'Total Ratings']
In [125]:
top15restauranttype_percent = pd.merge(total_restauranttype, top15restauranttype, on='Restaurant_Type_Main')
top15restauranttype_percent['Percentage']= (top15restauranttype_percent['Total Ratings']/
                                       top15restauranttype_percent['Total Restaurants'])*100

top15restauranttype_percent = top15restauranttype_percent.sort_values(by = 'Total Ratings', ascending=False)
In [126]:
#Plot Restaurant type percentage of restaurants in top 15 locations
fig, axx =plt.subplots(figsize=(17,8))
axx.set_title("Percentage Rating of different type of restaurant in Top 15 Locations")
sns.barplot(x='Restaurant_Type_Main', y='Percentage',hue='Rating', data=top15restauranttype_percent[:15000], palette='Set1')
plt.xticks(rotation=90)
Out[126]:
Text(0.5, 1.0, 'Percentage Rating of different type of restaurant in Top 15 Locations')
Out[126]:
<matplotlib.axes._subplots.AxesSubplot at 0x164b9fc47b8>
Out[126]:
(array([0, 1, 2, 3, 4, 5, 6]), <a list of 7 Text xticklabel objects>)

Managerial Insight:

The finding is explained by the fact that in the top 15 locations in Bangalore, we noted there was an overall positive sentiment rating, when compared to the last 15 locations. Also, when we further analysed what type of restaurant were people most happy with, we noted it was Drinks & Nightlife.We could use this finding as follows: whenever someone wants to open a restaurant, the probability of getting good ratings will be high if it has drinks & Nightlife.

Addtional plots and findings:

Approx cost vs rating

In [127]:
zomato_df_cpy["Avg_Cost"] = pd.cut(zomato_df_cpy["Approx_Cost_FOR_2"],bins = [0, 200, 500, 1000,  2500, 5000, 7500, 10000],
                                  labels = ["0", "<=200", "<=500", "<=1,000","<=2500", "<=5000", "<=7500",])

vis13 = sns.boxplot(x = zomato_df_cpy["Avg_Cost"], y = zomato_df_cpy["Rating"]).set_title("Zomato ratings v/s Cost")
In [128]:
#Is there any relation between average cost for two and aggregate rating of restaurants
zomato_df_cpy.plot.scatter(x='Approx_Cost_FOR_2',y='Rating',figsize=(10,6), color='orange', title="Cost vs Agg Rating")
Out[128]:
<matplotlib.axes._subplots.AxesSubplot at 0x164d1b55a58>
In [129]:
#Better view of relation between average cost for two and aggregate rating of restaurants
sns.jointplot(x='Approx_Cost_FOR_2',y='Rating',kind ='hex',gridsize=18,data =zomato_df_cpy,color='blue')
Out[129]:
<seaborn.axisgrid.JointGrid at 0x164d28e8eb8>

Finding : Resturants having NorthIndian Cuisine are more popular in Bangalore(a South Indian State) than the SouthIndian CuisIne. Also we can see that North Indian Restaurant density is more towards South Bangalore and South Indian Restuarant density is clustered in Central Bangalore.

In [130]:
from geopy.geocoders import Nominatim
from geopy.exc import GeocoderTimedOut
In [131]:
import chart_studio
import chart_studio.plotly as py
from plotly.graph_objs import *
In [132]:
chart_studio.tools.set_credentials_file(username='sramankandath', api_key='0jA7GdlHrTBRxTKXdeeD')
In [133]:
import googlemaps
from googlemaps import Client as GoogleMaps
import pandas as pd 
In [134]:
!pip install folium
import folium
from folium.plugins import HeatMap
Requirement already satisfied: folium in c:\users\16692\anaconda3\lib\site-packages (0.10.1)
Requirement already satisfied: jinja2>=2.9 in c:\users\16692\anaconda3\lib\site-packages (from folium) (2.10.1)
Requirement already satisfied: numpy in c:\users\16692\anaconda3\lib\site-packages (from folium) (1.16.4)
Requirement already satisfied: requests in c:\users\16692\anaconda3\lib\site-packages (from folium) (2.22.0)
Requirement already satisfied: branca>=0.3.0 in c:\users\16692\anaconda3\lib\site-packages (from folium) (0.4.0)
Requirement already satisfied: MarkupSafe>=0.23 in c:\users\16692\anaconda3\lib\site-packages (from jinja2>=2.9->folium) (1.1.1)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\users\16692\anaconda3\lib\site-packages (from requests->folium) (1.24.2)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in c:\users\16692\anaconda3\lib\site-packages (from requests->folium) (3.0.4)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\16692\anaconda3\lib\site-packages (from requests->folium) (2019.11.28)
Requirement already satisfied: idna<2.9,>=2.5 in c:\users\16692\anaconda3\lib\site-packages (from requests->folium) (2.8)
Requirement already satisfied: six in c:\users\16692\anaconda3\lib\site-packages (from branca>=0.3.0->folium) (1.12.0)
In [135]:
gmaps = GoogleMaps("#Give your credentials")
In [136]:
base_map = folium.Map(location=[12.97, 77.59], control_scale=True, zoom_start=12)
In [137]:
#Finding the latitiude and longitude of each location using geocode, as we don't have a column latitude and longitude
locations=pd.DataFrame({"Name":zomato_df['Location'].unique()})
locations['Name']=locations['Name'].apply(lambda x: "Bangalore " + str(x))
latlon=[]
geolocator=Nominatim(user_agent="app")
for location in locations['Name']:
    location = geolocator.geocode(location)
    if location is None:
        latlon.append(np.nan)
    else:    
        geo=(location.latitude,location.longitude)
        latlon.append(geo)


locations['geo_loc']=latlon
#Creating a CSV file with the locations,latitude and longitude
locations.to_csv('location_new.csv',index=False)
In [138]:
locations["Name"]=locations['Name'].apply(lambda x :  x.replace("Bangalore","")[1:])
locations.head(5)
Out[138]:
Name geo_loc
0 Banashankari (12.9152208, 77.573598)
1 Basavanagudi (12.9417261, 77.5755021)
2 Mysore Road (12.9314092, 77.5067138)
3 Jayanagar (12.9292731, 77.5824229)
4 Kumaraswamy Layout (12.906816899999999, 77.56352473621337)
In [139]:
LatLong_locations= zomato_df.copy()
LatLong_locations=LatLong_locations.merge(locations,how='left',left_on = "Location",right_on = "Name").dropna()
In [140]:
lat,lon=zip(*np.array(LatLong_locations['geo_loc']))
LatLong_locations['lat']=lat
LatLong_locations['lon']=lon
LatLong_locations
Out[140]:
Restaurant_Name Online_Order Book_table Rating Votes Location Type_of_Restaurant Cuisine Approx_Cost_FOR_2 Reviews Restaurant_Type_Main Name geo_loc lat lon
0 Jalsa 1.0 1.0 4.1 775 Banashankari Casual Dining Chinese Indian Mughlai North 800 A beautiful place to dine in.The interiors tak... Buffet Banashankari (12.9152208, 77.573598) 12.915221 77.573598
1 Spice Elephant 1.0 0.0 4.1 787 Banashankari Casual Dining Chinese Indian North Thai 800 Had been here for dinner with family. Turned o... Buffet Banashankari (12.9152208, 77.573598) 12.915221 77.573598
2 San Churro Cafe 1.0 0.0 3.8 918 Banashankari Cafe Casual Dining Cafe Italian Mexican 800 Ambience is not that good enough and it's not ... Buffet Banashankari (12.9152208, 77.573598) 12.915221 77.573598
3 Addhuri Udupi Bhojana 0.0 0.0 3.7 88 Banashankari Bites Quick Indian Indian North South 300 Great food and proper Karnataka style full mea... Buffet Banashankari (12.9152208, 77.573598) 12.915221 77.573598
4 Grand Village 0.0 0.0 3.8 166 Basavanagudi Casual Dining Indian North Rajasthani 600 Very good restaurant in neighbourhood. Buffet ... Buffet Basavanagudi (12.9417261, 77.5755021) 12.941726 77.575502
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
43473 M Bar - Bengaluru Marriott Hotel Whitefield 0.0 0.0 3.9 77 Whitefield Bar Dining Fine Finger Food 2000 Went there post dinner just for some dessert a... Pubs and bars Whitefield (12.9696365, 77.7497448) 12.969637 77.749745
43474 Keys Cafe - Keys Hotel 0.0 0.0 2.8 161 Whitefield Bar Casual Dining Chinese Continental Indian North 1200 Place is good not that great. Food was good no... Pubs and bars Whitefield (12.9696365, 77.7497448) 12.969637 77.749745
43475 The Farm House Bar n Grill 0.0 0.0 3.7 34 Whitefield Bar Casual Dining Continental Indian North 800 Ambience- Big and spacious lawn was used to ho... Pubs and bars Whitefield (12.9696365, 77.7497448) 12.969637 77.749745
43476 Bhagini 0.0 0.0 2.5 81 Whitefield Bar Casual Dining Andhra Chinese Indian Indian North South 800 A fine place to chill after office hours, reas... Pubs and bars Whitefield (12.9696365, 77.7497448) 12.969637 77.749745
43477 Best Brews - Four Points by Sheraton Bengaluru... 0.0 0.0 3.6 27 Whitefield Bar Continental 1500 Food and service are incomparably excellent. T... Pubs and bars Whitefield (12.9696365, 77.7497448) 12.969637 77.749745

40799 rows × 15 columns

In [141]:
SouthIndian_Cuisine = zomato_df[zomato_df.Cuisine.apply(lambda x: 'South' in x)]
In [142]:
#df_South.groupby('Location')['Location'].count()
SouthIndian_Cuisine=SouthIndian_Cuisine.groupby('Location').agg({'Location':'count'}).rename(columns={'Location':'SouthLoc_count'})
SouthIndian_Cuisine.head()
Out[142]:
SouthLoc_count
Location
BTM 567
Banashankari 193
Banaswadi 113
Bannerghatta Road 218
Basavanagudi 212
In [143]:
SouthCuisine_locations=SouthIndian_Cuisine.merge(LatLong_locations,how='left',on='Location')\
[['Location','SouthLoc_count','lat','lon']]
In [144]:
SouthCuisine_locations=SouthCuisine_locations.drop_duplicates(subset=None, keep='first', inplace=False)
SouthCuisine_locations = SouthCuisine_locations.dropna(inplace=False)
SouthCuisine_locations.head()
Out[144]:
Location SouthLoc_count lat lon
0 BTM 567 12.911276 77.604565
3873 Banashankari 193 12.915221 77.573598
4617 Banaswadi 113 13.014162 77.651854
5081 Bannerghatta Road 218 12.857693 77.588953
6305 Basavanagudi 212 12.941726 77.575502
In [145]:
HeatMap(SouthCuisine_locations[['lat','lon','SouthLoc_count']].values.tolist(),zoom=20,radius=15).add_to(base_map)
Out[145]:
<folium.plugins.heat_map.HeatMap at 0x164d47d22b0>
In [146]:
#Showing the density of South Indian Resturants
base_map
Out[146]:

They tend to span all over Bangalore.

South Indian cuisines tend to cluster near central Bangalore

In [147]:
NorthIndian_Cuisine = zomato_df[zomato_df.Cuisine.apply(lambda x: 'North' in x)]
In [148]:
#df_North.groupby('Location')['Location'].count()
NorthIndian_Cuisine.groupby('Location').agg({'Location':'count'}).rename(columns={'Location':'NorthLoc_count'}).head()
Out[148]:
NorthLoc_count
Location
BTM 2089
Banashankari 286
Banaswadi 173
Bannerghatta Road 608
Basavanagudi 168
In [149]:
NorthCuisine_location=NorthIndian_Cuisine.groupby('Location').agg({'Location':'count'}).rename(columns={'Location':'NorthLoc_count'})
NorthCuisine_location=NorthCuisine_location.merge(LatLong_locations,how='left',on='Location')\
[['Location','NorthLoc_count','lat','lon']]
NorthCuisine_location=NorthCuisine_location.drop_duplicates(subset=None, keep='first', inplace=False)
NorthCuisine_location.head()
Out[149]:
Location NorthLoc_count lat lon
0 BTM 2089 12.911276 77.604565
3873 Banashankari 286 12.915221 77.573598
4617 Banaswadi 173 13.014162 77.651854
5081 Bannerghatta Road 608 12.857693 77.588953
6305 Basavanagudi 168 12.941726 77.575502
In [150]:
NorthCuisine_location=NorthCuisine_location.dropna()
NorthCuisine_location.head()
Out[150]:
Location NorthLoc_count lat lon
0 BTM 2089 12.911276 77.604565
3873 Banashankari 286 12.915221 77.573598
4617 Banaswadi 173 13.014162 77.651854
5081 Bannerghatta Road 608 12.857693 77.588953
6305 Basavanagudi 168 12.941726 77.575502
In [151]:
HeatMap(NorthCuisine_location[['lat','lon','NorthLoc_count']].values.tolist(),zoom=20,radius=15).add_to(base_map)
Out[151]:
<folium.plugins.heat_map.HeatMap at 0x164d2614128>
In [152]:
base_map
Out[152]:

Interesting to see a cluster of North Indian Restaurants in Southern Bangalore area !

This may indicate that these areas are more populated by North Indians.

Random Forest:

In [153]:
#zomato_df2 = zomato_df.copy()
In [154]:
#zomato_df2.head(1)
In [155]:
#zomato_df2.drop(columns=['Reviews','Restaurant_Type_Main','Restaurant_Name'], inplace  =True)
In [156]:
#zomato_df2.head(1)
In [157]:
#X = zomato_df2.drop('Rating',axis=1)
In [158]:
#Y = zomato_df2.Rating
In [159]:
#train_data,test_data,y_train,y_test = train_test_split(X,Y,test_size = 0.3,random_state = 33)
In [160]:
#from sklearn.preprocessing import OneHotEncoder
#enc = OneHotEncoder( handle_unknown='ignore')
## ALWAYS AVOID DATA LEAKAGE

# this method is for training data set
#def one_hot_fit_transform(df,name):
 #   output_data = zomato_df2[name].values.reshape(-1, 1)
  #  return enc.fit_transform(output_data).toarray(), enc.get_feature_names([name])

# this method is for test data set
#def one_hot_transform(df,name):
 #   output_data1 = zomato_df2[name].values.reshape(-1, 1)
  #  return enc.transform(output_data1).toarray()
In [161]:
#all_features =[]
#tr_dummy_rest_type,rest_tr = one_hot_fit_transform(train_data,'Type_of_Restaurant' )
#te_dummy_rest_type = one_hot_transform(test_data,'Type_of_Restaurant' )
#all_features.extend(rest_tr)


#tr_dummy_online_order, oo_tr = one_hot_fit_transform(train_data,'Online_Order' )
#te_dummy_online_order = one_hot_transform(test_data,'Online_Order' )
#all_features.extend(oo_tr)

#tr_dummy_book_table,bt_tr = one_hot_fit_transform(train_data,'Book_table' )
#te_dummy_book_table = one_hot_transform(test_data,'Book_table' )
#all_features.extend(bt_tr)

#tr_dummy_city,loc_tr = one_hot_fit_transform(train_data,'Location' )
#te_dummy_city = one_hot_transform(test_data,'Location')
#all_features.extend(loc_tr)

#tr_dummy_cuisines,cui_tr = one_hot_fit_transform(train_data,'Cuisine' )
#te_dummy_cuisines =one_hot_transform(test_data,'Cuisine')
#all_features.extend(cui_tr)
In [162]:
## merge all training features

#tr =pd.DataFrame(pd.np.column_stack([tr_dummy_rest_type, tr_dummy_online_order,tr_dummy_book_table ,tr_dummy_city,
 #                                tr_dummy_cuisines]), columns=all_features)
## https://stackoverflow.com/questions/45963799/pandas-concat-resulting-in-nan-rows

#l1=train_data.values.tolist()
#l2=tr.values.tolist()

#for i in range(len(l1)):
 #   l1[i].extend(l2[i])

#X_train=pd.DataFrame(l1,columns=train_data.columns.tolist()+tr.columns.tolist())
In [163]:
#X_train.shape
In [164]:
## merge all testing features

#te =pd.DataFrame(pd.np.column_stack([te_dummy_rest_type, te_dummy_online_order,te_dummy_book_table,te_dummy_city,
 #                                         te_dummy_cuisines]),columns=all_features)


# X_test =pd.concat([test_data,te],axis=1)

#l3=test_data.values.tolist()
#l4=te.values.tolist()
#for i in range(len(l3)):
 #   l3[i].extend(l4[i])

#X_test=pd.DataFrame(l3,columns=test_data.columns.tolist()+te.columns.tolist())
#X_test.shape
In [165]:
#after onehot encoding DONE. 'location','rest_type','cuisines' are redundant features. REMOVE them.

#X_train =X_train.drop(['Location','Type_of_Restaurant','Cuisine','Online_Order','Book_table'],axis = 1)
#X_test =X_test.drop(['Location','Type_of_Restaurant','Cuisine','Online_Order','Book_table'],axis = 1)
In [ ]:
 
In [ ]:
 
In [166]:
#from sklearn.metrics import  make_scorer
#from sklearn.model_selection import GridSearchCV
#from sklearn import metrics


#def mse(y, y_pred):
 #   return np.mean((y_pred - y)**2) 

#mse_scorer = make_scorer(mse, greater_is_better=False)
In [167]:
#from sklearn.ensemble import RandomForestRegressor

#rfr = RandomForestRegressor(n_estimators=500)
#rfr.fit(X_train,y_train)
#y_pred_rfr = rfr.predict(X_test)

#mse(y_test, y_pred_rfr)
In [168]:
#from sklearn.metrics import r2_score
#print("Accuracy:",r2_score(y_test,y_pred_rfr))
In [169]:
#from sklearn import metrics
#base_imp = imp_df(X_train.columns, rfr.feature_importances_)
#base_imp[:10]

#base_imp = pd.Series(rfr.feature_importances_,X_train.columns)
           
#base_imp = base_imp.sort_values(ascending=False).head(10)
#base_imp
In [170]:
#base_imp = pd.DataFrame(data=base_imp)
In [171]:
#base_imp=base_imp.reset_index()
In [172]:
#base_imp.rename(columns={'index': 'Features',\
 #                    0: 'Score'}, inplace=True)
In [173]:
#sns.catplot(x="Score", y="Features", data=base_imp,
 #         aspect=3, kind='bar')
In [174]:
#Randpred = pd.DataFrame({ "actual": y_test, "pred": y_pred_rfr })
#Randpred.head()
In [175]:
#plt.figure(figsize=(12,7))
#y_pred_rfr = rfr.predict(X_test)
#plt.scatter(y_test,X_test.iloc[:,1],color="red")
#plt.title("True rate vs Predicted rate",size=20,pad=15)
#plt.xlabel('Rating',size = 15)
#plt.ylabel('Frequency',size = 15)
#plt.scatter(y_pred_rfr,X_test.iloc[:,1],color="green")

We note that though the accuracy of predicted rate is very high, but we cannot base our judgement of factors affecting Rating on the basis of top 10 important variables. The data is not normalized and hence, we cant base our deicision barely on these findings. This is why we decided to not move forward with this model.

Best restaurant on the basis of cost and rating (both cheapest and most expensive):

In [176]:
zomato_df3 = zomato_df.copy()
In [177]:
zomato_df3= zomato_df3.drop_duplicates(subset='Restaurant_Name',keep='first')
# dups_name = X1.pivot_table(index=['name'],aggfunc='size')
newdf=zomato_df3[['Restaurant_Name','Approx_Cost_FOR_2','Location','Type_of_Restaurant','Cuisine']].groupby(['Approx_Cost_FOR_2'], sort = True)
newdf=newdf.filter(lambda x: x.mean() <= 1500)
newdf=newdf.sort_values(by=['Approx_Cost_FOR_2'])

newdf_expensive=zomato_df3[['Restaurant_Name','Approx_Cost_FOR_2','Location','Type_of_Restaurant','Cuisine']].groupby(['Approx_Cost_FOR_2'], sort = True)
newdf_expensive=newdf_expensive.filter(lambda x: x.mean() >= 3000)
newdf_expensive=newdf_expensive.sort_values(by=['Approx_Cost_FOR_2'])
In [178]:
newdf_rate=zomato_df3[['Restaurant_Name','Rating']].groupby(['Rating'], sort = True)
newdf_rate=newdf_rate.filter(lambda x: x.mean() >= 4.5)
newdf_rate=newdf_rate.sort_values(by=['Rating'])
In [179]:
s1 = pd.merge(newdf, newdf_rate, how='inner', on=['Restaurant_Name'])

s2= pd.merge(newdf_expensive, newdf_rate, how='inner', on=['Restaurant_Name'])
In [180]:
print("Cheap restaurants with low cost,high rating \n")
s1.head()
Cheap restaurants with low cost,high rating 

Out[180]:
Restaurant_Name Approx_Cost_FOR_2 Location Type_of_Restaurant Cuisine Rating
0 Taaza Thindi 100 Banashankari Bites Quick Indian South 4.7
1 Brahmin's Coffee Bar 100 Basavanagudi Bites Quick Indian South 4.8
2 CTR 150 Malleshwaram Bites Quick Indian South 4.7
3 Chikkanna Tiffin Room 150 City Market Bites Quick Indian South 4.5
4 Veena Stores 150 Malleshwaram Bites Quick Indian South 4.5
In [181]:
sns.barplot(x='Restaurant_Name', y='Approx_Cost_FOR_2', data=s1[:10], palette='PuBu')
plt.xticks(rotation=90)
Out[181]:
<matplotlib.axes._subplots.AxesSubplot at 0x164d4809668>
Out[181]:
(array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]), <a list of 10 Text xticklabel objects>)
In [182]:
print("Expensive restaurants with high cost,high rating \n")
s2.head()
Expensive restaurants with high cost,high rating 

Out[182]:
Restaurant_Name Approx_Cost_FOR_2 Location Type_of_Restaurant Cuisine Rating
0 Rim Naam - The Oberoi 3000 MG Road Dining Fine Thai 4.6
1 Karavalli - The Gateway Hotel 3500 Residency Road Dining Fine Kerala Konkan Mangalorean Seafood 4.5
2 Alba - JW Marriott Bengaluru 4000 Lavelle Road Dining Fine Italian 4.5
In [183]:
sns.barplot(x='Restaurant_Name', y='Approx_Cost_FOR_2', data=s2[:10], palette='PuBu')
Out[183]:
<matplotlib.axes._subplots.AxesSubplot at 0x164d3479358>

Sentiment Analysis for customer reviews

In [184]:
import nltk
from nltk.sentiment.vader import SentimentIntensityAnalyzer
In [185]:
restaurant_rev = zomato_df['Reviews'].value_counts()
restaurant_rev.sample(50)
Out[185]:
Overated place .\nMusic not loud enough , same songs repeated\nNew year was celebrated poorly. After 12 countdown started. Food was bad. Dint like it at all.'), ('Rated 1.0', 'RATED\n  Worst experience of bangalore. Heard a lot about it but it was really bad. No place to chill. Worst DJ. Only place for hippies\nFood-1/5\nAmbience-1/5\nService-1/5\nCost-1/5'), ('Rated 3.0', 'RATED\n  Dance in an open space under the trees is a different experience.\nReason for 3* is because of costly pint of beer (Budweiser) and they have only Budweiser nothing else.'), ('Rated 4.0', 'RATED\n  One of those old places that we in Bangalore identity us with , the parties under the banyan tree , such were those days . Raved till 2-3 am for so many years till the clamp down on the night life came into force . The usual tad here , nothing special except the environment and the ambience . I love you guys at Pebble hence the review . Rave on .'), ('Rated 4.0', 'RATED\n  Nice place and friendly staff.\nThey have alot of Edm, Bollywood and psy events here .\n\nGood place to unwind and catch up with friends.\n\nManagement is very friendly.'), ('Rated 3.0', 'RATED\n  Went with friends on the weekend when they had the food truck festival out there. Wandered into the place and was struck by the remarkable look of the place. Reminds of pubs in places like Miami and quite uncommon in a city like Bangalore. Lots of people hanging out having beers mostly, a DJ playing some techno and with lights around on the trees, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s not bad. Not much to eat though and it does give a feel of an economical drinking place for people looking for some cheap beer.'), ('Rated 5.0', 'RATED\n  One of the best place to party. The jungle lounge in the heart of the city. The ambiance is perfect for party. They really understand the guest.'), ('Rated 4.5', 'RATED\n  We went fr a party here. I really liked how this place is a jungle themed open spaced area. There are bars and food areas where they mostly serve finger food. The prices are ok. Its a huge area you can easily chill and dance and have fun.'), ('Rated 3.5', 'RATED\n  Raw, Jungle, Earthy!)\nUnderground vibe and matching music; psytrance, dubstep, deep house, etc.\nYour local go-to tribal joint.\n\nPsytrance animals watering hole.'), ('Rated 4.0', 'RATED\n  Attended my first Psy Trance event here. Place is scenic drinks are good but can be improved in terms of varieties. Bit less spacious for an outdoor club.'), ('Rated 3.0', 'RATED\n  Good place to hangout with friends!!\nAll the sitting arrangements, bar remind of a jungle as the name suggests.We went there for an event organised on sunday, not much crowd but music beats were good.It was a wedding night theme.\nNot enough options for drinks and food but ambience is really good, just sit there with friends and enjoy the nature while having some beer!!'), ('Rated 3.0', "RATED\n  Pebble is the place to hang our for some good music along with nature. The whole set up and vibe of the place is relaxing. The whole pub is made of natural things like stone chairs and wooden table. It is very basic yet relaxing. It has 2 dance floors. One for small party and the other outdoor one is for big concerts.Having said that, the food and cocktails offered is priced high and not that great. Don't expect anything fancy, its just a place for good music and vibe."), ('Rated 4.0', 'RATED\n  At the outskirts of Bangalore a good place if you wanna have time of your own..\nA place for lot of parties.. Good food and awesome drinks to try out..'), ('Rated 3.5', 'RATED\n  Recommendation Level : medium\nI was actually skeptical on going to this place.\nThis place looks haunting. But after u enter this it is not actually that scary.\nFood is fine and on budget place.'), ('Rated 4.0', 'RATED\n  I went here with a skeptical mind long back during the kitch Mandi food fest. The place looked haunting initially. And then we went inside the beauty of the open doors. The wooden caves the deewaan seatings all together was breathtaking. Although it was costly that day we had utmost fun. Many people had joined the party and it went on till night 10pm. Drinks smoke all kinds of people. Overall good experience.'), ('Rated 3.0', 'RATED\n  Good place to hangout with friends!!\nAll the sitting arrangements, bar remind of a jungle as the name suggests.We went there for an event organised on sunday, not much crowd but music beats were good.It was a wedding night theme.\nNot enough options for drinks and food but ambience is really good, just sit there with friends and enjoy the nature while having some beer!!'), ('Rated 3.0', "RATED\n  Pebble is the place to hang our for some good music along with nature. The whole set up and vibe of the place is relaxing. The whole pub is made of natural things like stone chairs and wooden table. It is very basic yet relaxing. It has 2 dance floors. One for small party and the other outdoor one is for big concerts.Having said that, the food and cocktails offered is priced high and not that great. Don't expect anything fancy, its just a place for good music and vibe."), ('Rated 4.0', 'RATED\n  At the outskirts of Bangalore a good place if you wanna have time of your own..\nA place for lot of parties.. Good food and awesome drinks to try out..'), ('Rated 3.5', 'RATED\n  Recommendation Level : medium\nI was actually skeptical on going to this place.\nThis place looks haunting. But after u enter this it is not actually that scary.\nFood is fine and on budget place.'), ('Rated 4.0', 'RATED\n  I went here with a skeptical mind long back during the kitch Mandi food fest. The place looked haunting initially. And then we went inside the beauty of the open doors. The wooden caves the deewaan seatings all together was breathtaking. Although it was costly that day we had utmost fun. Many people had joined the party and it went on till night 10pm. Drinks smoke all kinds of people. Overall good experience.'), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 4.0', 'RATED\n  Loved the ambience and dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor at this place. The food and drinks were also amazing and I was impressed with the overall experience at this place.'), ('Rated 4.5', "RATED\n  Holi or any big event you are looking forward to enjoy with your friends this place is the best suited one . Just follow if there is a dress code and you are most welcome to this place, especially on weekends with a really awesome crowd and good ambience if it's dusk ."), ('Rated 1.0', 'RATED\n  Cheater...no rain dance...bad music....no food...no welcome drinks....worst management.....PLEASE NEVER VISIT THERE JUST WASTE\n.............................'), ('Rated 1.0', 'RATED\n  Holi event was pathetic, too much crowd, scarcity of colors, no rain dance. Bathrooms very dirty, no place for ladies to change dress. No proper place to keep luggage safely. For the money (1500 for couple) there was no service at all.'), ('Rated 2.0', "RATED\n  This is not a place to go for people who don't drink. Very limited item is available to eat. Staff was also rude. We went there for Lohri festival and we was not allowed to go out if we wanna come back."), ('Rated 3.5', 'RATED\n  Went here for the food truck festival. It was a very coosy cool place. Inside the city but yet so spacious and super cool place for people to hang out. The arrangement is very informal. In stones and bean bags. The drink counter and food counters are spread all around the place.\n\nkeepitstylishdayita.com'), ('Rated 4.5', "RATED\n  My only review * Bear the Brevity *\n- first of all, the entrance to the pub was so shady and dingy that it had a sense of mistry and intrigue to it.\n- the only pub in bangalore that exclusively caters to psy trance crowd..... ONLY.\n- the ambience of the place is like a portal to the shiva cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of goa or the raasta cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of manali.\n- the DJs that play here don't play in any other pubs...they otherwise only do private gigs *rave*\n- a word about the old banyan tree which is the centre piece of the jungle lounge: it's eerie and creepy. There is a spot where the roots of the tree fall down to form a circular curtain..you can totally zone out in there.\n- every aspect of this place, the design, the music, the atmos reeks of psychedelia.\n- in short this place capture the true essence of yester year hippy culture that was lost due to mainstream EDM cult.\n\nPS: not mentioning the food or cuisine was intentional as I went there purely for its soul."), ('Rated 3.5', "RATED\n  This used to be the happening place once upon a time ,I'm glad nothing much is changed here except that it's forgotten to update itself ...but that's their USP of sorts ..it's laid back ,chilled out ,great place for gigs and decent food / menu oh yeah invariably the music is always good here ...cheers"), ('Rated 1.0', 'RATED\n  Sucks a lot. Worst DJ, Worst Manager, Very High Prices and No Manners to talk to customers. Strictly a no for anyone. Served Non vegetarian Fish when we ordered cheese sticks and did not apologize for the same'), ('Rated 2.0', 'RATED\n  A bit over hyped place with pathetic music, friendly staff and rude management. Not much variety with food and drinks. Ambience was good. Average experience.'), ('Rated 3.5', 'RATED\n  Went here for the food truck festival. It was a very coosy cool place. Inside the city but yet so spacious and super cool place for people to hang out. The arrangement is very informal. In stones and bean bags. The drink counter and food counters are spread all around the place.\n\nkeepitstylishdayita.com'), ('Rated 4.5', "RATED\n  My only review * Bear the Brevity *\n- first of all, the entrance to the pub was so shady and dingy that it had a sense of mistry and intrigue to it.\n- the only pub in bangalore that exclusively caters to psy trance crowd..... ONLY.\n- the ambience of the place is like a portal to the shiva cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of goa or the raasta cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of manali.\n- the DJs that play here don't play in any other pubs...they otherwise only do private gigs *rave*\n- a word about the old banyan tree which is the centre piece of the jungle lounge: it's eerie and creepy. There is a spot where the roots of the tree fall down to form a circular curtain..you can totally zone out in there.\n- every aspect of this place, the design, the music, the atmos reeks of psychedelia.\n- in short this place capture the true essence of yester year hippy culture that was lost due to mainstream EDM cult.\n\nPS: not mentioning the food or cuisine was intentional as I went there purely for its soul."), ('Rated 3.5', "RATED\n  This used to be the happening place once upon a time ,I'm glad nothing much is changed here except that it's forgotten to update itself ...but that's their USP of sorts ..it's laid back ,chilled out ,great place for gigs and decent food / menu oh yeah invariably the music is always good here ...cheers"), ('Rated 1.0', 'RATED\n  Sucks a lot. Worst DJ, Worst Manager, Very High Prices and No Manners to talk to customers. Strictly a no for anyone. Served Non vegetarian Fish when we ordered cheese sticks and did not apologize for the same'), ('Rated 2.0', 'RATED\n  A bit over hyped place with pathetic music, friendly staff and rude management. Not much variety with food and drinks. Ambience was good. Average experience.'), ('Rated 3.5', 'RATED\n  Went here for the food truck festival. It was a very coosy cool place. Inside the city but yet so spacious and super cool place for people to hang out. The arrangement is very informal. In stones and bean bags. The drink counter and food counters are spread all around the place.\n\nkeepitstylishdayita.com'), ('Rated 4.5', "RATED\n  My only review * Bear the Brevity *\n- first of all, the entrance to the pub was so shady and dingy that it had a sense of mistry and intrigue to it.\n- the only pub in bangalore that exclusively caters to psy trance crowd..... ONLY.\n- the ambience of the place is like a portal to the shiva cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of goa or the raasta cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of manali.\n- the DJs that play here don't play in any other pubs...they otherwise only do private gigs *rave*\n- a word about the old banyan tree which is the centre piece of the jungle lounge: it's eerie and creepy. There is a spot where the roots of the tree fall down to form a circular curtain..you can totally zone out in there.\n- every aspect of this place, the design, the music, the atmos reeks of psychedelia.\n- in short this place capture the true essence of yester year hippy culture that was lost due to mainstream EDM cult.\n\nPS: not mentioning the food or cuisine was intentional as I went there purely for its soul."), ('Rated 3.5', "RATED\n  This used to be the happening place once upon a time ,I'm glad nothing much is changed here except that it's forgotten to update itself ...but that's their USP of sorts ..it's laid back ,chilled out ,great place for gigs and decent food / menu oh yeah invariably the music is always good here ...cheers"), ('Rated 1.0', 'RATED\n  Sucks a lot. Worst DJ, Worst Manager, Very High Prices and No Manners to talk to customers. Strictly a no for anyone. Served Non vegetarian Fish when we ordered cheese sticks and did not apologize for the same'), ('Rated 2.0', 'RATED\n  A bit over hyped place with pathetic music, friendly staff and rude management. Not much variety with food and drinks. Ambience was good. Average experience.'), ('Rated 3.5', 'RATED\n  Went here for the food truck festival. It was a very coosy cool place. Inside the city but yet so spacious and super cool place for people to hang out. The arrangement is very informal. In stones and bean bags. The drink counter and food counters are spread all around the place.\n\nkeepitstylishdayita.com'), ('Rated 4.5', "RATED\n  My only review * Bear the Brevity *\n- first of all, the entrance to the pub was so shady and dingy that it had a sense of mistry and intrigue to it.\n- the only pub in bangalore that exclusively caters to psy trance crowd..... ONLY.\n- the ambience of the place is like a portal to the shiva cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of goa or the raasta cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of manali.\n- the DJs that play here don't play in any other pubs...they otherwise only do private gigs *rave*\n- a word about the old banyan tree which is the centre piece of the jungle lounge: it's eerie and creepy. There is a spot where the roots of the tree fall down to form a circular curtain..you can totally zone out in there.\n- every aspect of this place, the design, the music, the atmos reeks of psychedelia.\n- in short this place capture the true essence of yester year hippy culture that was lost due to mainstream EDM cult.\n\nPS: not mentioning the food or cuisine was intentional as I went there purely for its soul."), ('Rated 3.5', "RATED\n  This used to be the happening place once upon a time ,I'm glad nothing much is changed here except that it's forgotten to update itself ...but that's their USP of sorts ..it's laid back ,chilled out ,great place for gigs and decent food / menu oh yeah invariably the music is always good here ...cheers"), ('Rated 1.0', 'RATED\n  Sucks a lot. Worst DJ, Worst Manager, Very High Prices and No Manners to talk to customers. Strictly a no for anyone. Served Non vegetarian Fish when we ordered cheese sticks and did not apologize for the same'), ('Rated 2.0', 'RATED\n  A bit over hyped place with pathetic music, friendly staff and rude management. Not much variety with food and drinks. Ambience was good. Average experience.'), ('Rated 3.5', 'RATED\n  Went here for the food truck festival. It was a very coosy cool place. Inside the city but yet so spacious and super cool place for people to hang out. The arrangement is very informal. In stones and bean bags. The drink counter and food counters are spread all around the place.\n\nkeepitstylishdayita.com'), ('Rated 4.5', "RATED\n  My only review * Bear the Brevity *\n- first of all, the entrance to the pub was so shady and dingy that it had a sense of mistry and intrigue to it.\n- the only pub in bangalore that exclusively caters to psy trance crowd..... ONLY.\n- the ambience of the place is like a portal to the shiva cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of goa or the raasta cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of manali.\n- the DJs that play here don't play in any other pubs...they otherwise only do private gigs *rave*\n- a word about the old banyan tree which is the centre piece of the jungle lounge: it's eerie and creepy. There is a spot where the roots of the tree fall down to form a circular curtain..you can totally zone out in there.\n- every aspect of this place, the design, the music, the atmos reeks of psychedelia.\n- in short this place capture the true essence of yester year hippy culture that was lost due to mainstream EDM cult.\n\nPS: not mentioning the food or cuisine was intentional as I went there purely for its soul."), ('Rated 3.5', "RATED\n  This used to be the happening place once upon a time ,I'm glad nothing much is changed here except that it's forgotten to update itself ...but that's their USP of sorts ..it's laid back ,chilled out ,great place for gigs and decent food / menu oh yeah invariably the music is always good here ...cheers"), ('Rated 1.0', 'RATED\n  Sucks a lot. Worst DJ, Worst Manager, Very High Prices and No Manners to talk to customers. Strictly a no for anyone. Served Non vegetarian Fish when we ordered cheese sticks and did not apologize for the same'), ('Rated 2.0', 'RATED\n  A bit over hyped place with pathetic music, friendly staff and rude management. Not much variety with food and drinks. Ambience was good. Average experience.'), ('Rated 3.5', 'RATED\n  Went here for the food truck festival. It was a very coosy cool place. Inside the city but yet so spacious and super cool place for people to hang out. The arrangement is very informal. In stones and bean bags. The drink counter and food counters are spread all around the place.\n\nkeepitstylishdayita.com'), ('Rated 4.5', "RATED\n  My only review * Bear the Brevity *\n- first of all, the entrance to the pub was so shady and dingy that it had a sense of mistry and intrigue to it.\n- the only pub in bangalore that exclusively caters to psy trance crowd..... ONLY.\n- the ambience of the place is like a portal to the shiva cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of goa or the raasta cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©s of manali.\n- the DJs that play here don't play in any other pubs...they otherwise only do private gigs *rave*\n- a word about the old banyan tree which is the centre piece of the jungle lounge: it's eerie and creepy. There is a spot where the roots of the tree fall down to form a circular curtain..you can totally zone out in there.\n- every aspect of this place, the design, the music, the atmos reeks of psychedelia.\n- in short this place capture the true essence of yester year hippy culture that was lost due to mainstream EDM cult.\n\nPS: not mentioning the food or cuisine was intentional as I went there purely for its soul."), ('Rated 3.5', "RATED\n  This used to be the happening place once upon a time ,I'm glad nothing much is changed here except that it's forgotten to update itself ...but that's their USP of sorts ..it's laid back ,chilled out ,great place for gigs and decent food / menu oh yeah invariably the music is always good here ...cheers"), ('Rated 1.0', 'RATED\n  Sucks a lot. Worst DJ, Worst Manager, Very High Prices and No Manners to talk to customers. Strictly a no for anyone. Served Non vegetarian Fish when we ordered cheese sticks and did not apologize for the same'), ('Rated 2.0', 'RATED\n  A bit over hyped place with pathetic music, friendly staff and rude management. Not much variety with food and drinks. Ambience was good. Average experience.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 4.0', 'RATED\n  I went there to celebrate my birthday two weeks back. I have been to this places multiple times with bunch of my close friends.\nI must say this place is awesome and rocking.  If you want to drink & dance, this is your place.\nFood & service is okay kind of average.\nGood DJ and they play some really good music.\nGreat place to hangout with close friends or gang that drinks and shake legs on high node music.'), ('Rated 5.0', "RATED\n  What can I say about this place .Being a psy trance fan it's the only place in Banglore that supports this genre .It's has one of the best and open crowd.Went with 7 friends to this place and we had a time of our lives .The Dj here is amazing and plays good underground trance .You won't find ambience like this at any other place .It feels like you are in some rave ."), ('Rated 5.0', 'RATED\n  Oh my gawd... i love the ambience here in pebbles...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤ this is the only place i party oftenly..!! Seriously i love the djs here... Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c'), ('Rated 3.5', 'RATED\n  I could write a story about their ambience which I feel is very cool and nice, my friend deepa hangs out here often, she was the one who took me to this place and i really loved it. The drink and chicken starters were also good.'), ('Rated 3.5', 'RATED\n  Just to drink & dance this place is good, they organise more of trance music events. Food & service average. There is no much of seating arrangements.'), ('Rated 5.0', 'RATED\n  The best place for psytrance lovers . Host the best psy parties in town . The food is average , but the ambience is lovely. A great place to chill & party'), ('Rated 1.0', 'RATED\n  Bakwas DJ....u can imagine at 11 pm saturday dance floor was empty.. noboday was dancing. if you really wanna dance dont come here. If you jst wanna hangout nd like to visit a different ambience can come once.'), ('Rated 4.0', 'RATED\n  This was a first time visit here. Heard from a lot of people that the place is one of the best in town. Not sure about that but the place was fun. The food was really good. Nice open natural ambience. Good DJ lineup and a pretty fun crowd.\n\nMy only quirk was that they only had Fosters to serve for beer.\n\nTip: For a better experience, visit after 11pm'), ('Rated 4.5', "RATED\n  Most chilled out spots ! A place to be if you wanna be in that niche segment of people ! Some really amazing food, events ! Crowd here is totally unique & wouldn't get this crowd at another place !"), ('Rated 4.0', "RATED\n  Went here for a food festival; it was a truck food + music festival.. This place is quite far from city however love the feel of open air and natural beauty.\nTruck food was okayish nothing great but please note it wasn't part of restaurant's food menu so I am not rating the food of pebbles here.\nMusic was so awesome we all got transitioned to Goa it felt. Loved the dj and awesome trance he had played.\nOverall good place to visit with your gang."), ('Rated 5.0', 'RATED\n  The best place for psytrance lovers . Host the best psy parties in town . The food is average , but the ambience is lovely. A great place to chill & party'), ('Rated 1.0', 'RATED\n  Bakwas DJ....u can imagine at 11 pm saturday dance floor was empty.. noboday was dancing. if you really wanna dance dont come here. If you jst wanna hangout nd like to visit a different ambience can come once.'), ('Rated 4.0', 'RATED\n  This was a first time visit here. Heard from a lot of people that the place is one of the best in town. Not sure about that but the place was fun. The food was really good. Nice open natural ambience. Good DJ lineup and a pretty fun crowd.\n\nMy only quirk was that they only had Fosters to serve for beer.\n\nTip: For a better experience, visit after 11pm'), ('Rated 4.5', "RATED\n  Most chilled out spots ! A place to be if you wanna be in that niche segment of people ! Some really amazing food, events ! Crowd here is totally unique & wouldn't get this crowd at another place !"), ('Rated 4.0', "RATED\n  Went here for a food festival; it was a truck food + music festival.. This place is quite far from city however love the feel of open air and natural beauty.\nTruck food was okayish nothing great but please note it wasn't part of restaurant's food menu so I am not rating the food of pebbles here.\nMusic was so awesome we all got transitioned to Goa it felt. Loved the dj and awesome trance he had played.\nOverall good place to visit with your gang."), ('Rated 5.0', 'RATED\n  The best place for psytrance lovers . Host the best psy parties in town . The food is average , but the ambience is lovely. A great place to chill & party'), ('Rated 1.0', 'RATED\n  Bakwas DJ....u can imagine at 11 pm saturday dance floor was empty.. noboday was dancing. if you really wanna dance dont come here. If you jst wanna hangout nd like to visit a different ambience can come once.'), ('Rated 4.0', 'RATED\n  This was a first time visit here. Heard from a lot of people that the place is one of the best in town. Not sure about that but the place was fun. The food was really good. Nice open natural ambience. Good DJ lineup and a pretty fun crowd.\n\nMy only quirk was that they only had Fosters to serve for beer.\n\nTip: For a better experience, visit after 11pm'), ('Rated 4.5', "RATED\n  Most chilled out spots ! A place to be if you wanna be in that niche segment of people ! Some really amazing food, events ! Crowd here is totally unique & wouldn't get this crowd at another place !"), ('Rated 4.0', "RATED\n  Went here for a food festival; it was a truck food + music festival.. This place is quite far from city however love the feel of open air and natural beauty.\nTruck food was okayish nothing great but please note it wasn't part of restaurant's food menu so I am not rating the food of pebbles here.\nMusic was so awesome we all got transitioned to Goa it felt. Loved the dj and awesome trance he had played.\nOverall good place to visit with your gang."), ('Rated 5.0', 'RATED\n  The best place for psytrance lovers . Host the best psy parties in town . The food is average , but the ambience is lovely. A great place to chill & party'), ('Rated 1.0', 'RATED\n  Bakwas DJ....u can imagine at 11 pm saturday dance floor was empty.. noboday was dancing. if you really wanna dance dont come here. If you jst wanna hangout nd like to visit a different ambience can come once.'), ('Rated 4.0', 'RATED\n  This was a first time visit here. Heard from a lot of people that the place is one of the best in town. Not sure about that but the place was fun. The food was really good. Nice open natural ambience. Good DJ lineup and a pretty fun crowd.\n\nMy only quirk was that they only had Fosters to serve for beer.\n\nTip: For a better experience, visit after 11pm'), ('Rated 4.5', "RATED\n  Most chilled out spots ! A place to be if you wanna be in that niche segment of people ! Some really amazing food, events ! Crowd here is totally unique & wouldn't get this crowd at another place !"), ('Rated 4.0', "RATED\n  Went here for a food festival; it was a truck food + music festival.. This place is quite far from city however love the feel of open air and natural beauty.\nTruck food was okayish nothing great but please note it wasn't part of restaurant's food menu so I am not rating the food of pebbles here.\nMusic was so awesome we all got transitioned to Goa it felt. Loved the dj and awesome trance he had played.\nOverall good place to visit with your gang."), ('Rated 5.0', 'RATED\n  The best place for psytrance lovers . Host the best psy parties in town . The food is average , but the ambience is lovely. A great place to chill & party'), ('Rated 1.0', 'RATED\n  Bakwas DJ....u can imagine at 11 pm saturday dance floor was empty.. noboday was dancing. if you really wanna dance dont come here. If you jst wanna hangout nd like to visit a different ambience can come once.'), ('Rated 4.0', 'RATED\n  This was a first time visit here. Heard from a lot of people that the place is one of the best in town. Not sure about that but the place was fun. The food was really good. Nice open natural ambience. Good DJ lineup and a pretty fun crowd.\n\nMy only quirk was that they only had Fosters to serve for beer.\n\nTip: For a better experience, visit after 11pm'), ('Rated 4.5', "RATED\n  Most chilled out spots ! A place to be if you wanna be in that niche segment of people ! Some really amazing food, events ! Crowd here is totally unique & wouldn't get this crowd at another place !"), ('Rated 4.0', "RATED\n  Went here for a food festival; it was a truck food + music festival.. This place is quite far from city however love the feel of open air and natural beauty.\nTruck food was okayish nothing great but please note it wasn't part of restaurant's food menu so I am not rating the food of pebbles here.\nMusic was so awesome we all got transitioned to Goa it felt. Loved the dj and awesome trance he had played.\nOverall good place to visit with your gang."), ('Rated 4.0', 'RATED\n  The music, the outdoor seating, the dance floor, the food and the over all ambiance. I absolutely loved it. One of the best places in the area. It is a different experience. It sort of has a jungle theme.'), ('Rated 4.0', 'RATED\n  Went there during Bangalore food truck event and I was totally impressed with the set up, decoration, theme, music, crowd and finally the food. Amazing and awesome time spent. Went there with my wife and she too totally enjoyed it. Overall an amazing experience.'), ('Rated 1.0', "RATED\n  Worst experience i ever had, Don't go for this place. On phone they told 1200 is entry charge with 100% cover instead they only gave 300 for cover.\n\nOverpriced Place with no such facility.\n\nDefinitely not a place to bring your female friend."), ('Rated 4.5', 'RATED\n  The ambience is great. An open air discotheque. Good modern music. Good DJ lineups. Life of the party!!! Awesome place to hangout with close friends or gang to shake some legs. Highly recommended!'), ('Rated 3.5', 'RATED\n  "Jungle Lounge" for a reason, with the trees and lighting. A partying hub with renowned DJ\'s playing every weekend. Friendly staff and overall a satisfactory experience.'), ('Rated 4.0', 'RATED\n  The music, the outdoor seating, the dance floor, the food and the over all ambiance. I absolutely loved it. One of the best places in the area. It is a different experience. It sort of has a jungle theme.'), ('Rated 4.0', 'RATED\n  Went there during Bangalore food truck event and I was totally impressed with the set up, decoration, theme, music, crowd and finally the food. Amazing and awesome time spent. Went there with my wife and she too totally enjoyed it. Overall an amazing experience.'), ('Rated 1.0', "RATED\n  Worst experience i ever had, Don't go for this place. On phone they told 1200 is entry charge with 100% cover instead they only gave 300 for cover.\n\nOverpriced Place with no such facility.\n\nDefinitely not a place to bring your female friend."), ('Rated 4.5', 'RATED\n  The ambience is great. An open air discotheque. Good modern music. Good DJ lineups. Life of the party!!! Awesome place to hangout with close friends or gang to shake some legs. Highly recommended!'), ('Rated 3.5', 'RATED\n  "Jungle Lounge" for a reason, with the trees and lighting. A partying hub with renowned DJ\'s playing every weekend. Friendly staff and overall a satisfactory experience.'), ('Rated 4.0', 'RATED\n  The music, the outdoor seating, the dance floor, the food and the over all ambiance. I absolutely loved it. One of the best places in the area. It is a different experience. It sort of has a jungle theme.'), ('Rated 4.0', 'RATED\n  Went there during Bangalore food truck event and I was totally impressed with the set up, decoration, theme, music, crowd and finally the food. Amazing and awesome time spent. Went there with my wife and she too totally enjoyed it. Overall an amazing experience.'), ('Rated 1.0', "RATED\n  Worst experience i ever had, Don't go for this place. On phone they told 1200 is entry charge with 100% cover instead they only gave 300 for cover.\n\nOverpriced Place with no such facility.\n\nDefinitely not a place to bring your female friend."), ('Rated 4.5', 'RATED\n  The ambience is great. An open air discotheque. Good modern music. Good DJ lineups. Life of the party!!! Awesome place to hangout with close friends or gang to shake some legs. Highly recommended!'), ('Rated 3.5', 'RATED\n  "Jungle Lounge" for a reason, with the trees and lighting. A partying hub with renowned DJ\'s playing every weekend. Friendly staff and overall a satisfactory experience.'), ('Rated 4.0', 'RATED\n  The music, the outdoor seating, the dance floor, the food and the over all ambiance. I absolutely loved it. One of the best places in the area. It is a different experience. It sort of has a jungle theme.'), ('Rated 4.0', 'RATED\n  Went there during Bangalore food truck event and I was totally impressed with the set up, decoration, theme, music, crowd and finally the food. Amazing and awesome time spent. Went there with my wife and she too totally enjoyed it. Overall an amazing experience.'), ('Rated 1.0', "RATED\n  Worst experience i ever had, Don't go for this place. On phone they told 1200 is entry charge with 100% cover instead they only gave 300 for cover.\n\nOverpriced Place with no such facility.\n\nDefinitely not a place to bring your female friend."), ('Rated 4.5', 'RATED\n  The ambience is great. An open air discotheque. Good modern music. Good DJ lineups. Life of the party!!! Awesome place to hangout with close friends or gang to shake some legs. Highly recommended!'), ('Rated 3.5', 'RATED\n  "Jungle Lounge" for a reason, with the trees and lighting. A partying hub with renowned DJ\'s playing every weekend. Friendly staff and overall a satisfactory experience.'), ('Rated 4.0', 'RATED\n  The music, the outdoor seating, the dance floor, the food and the over all ambiance. I absolutely loved it. One of the best places in the area. It is a different experience. It sort of has a jungle theme.'), ('Rated 4.0', 'RATED\n  Went there during Bangalore food truck event and I was totally impressed with the set up, decoration, theme, music, crowd and finally the food. Amazing and awesome time spent. Went there with my wife and she too totally enjoyed it. Overall an amazing experience.'), ('Rated 1.0', "RATED\n  Worst experience i ever had, Don't go for this place. On phone they told 1200 is entry charge with 100% cover instead they only gave 300 for cover.\n\nOverpriced Place with no such facility.\n\nDefinitely not a place to bring your female friend."), ('Rated 4.5', 'RATED\n  The ambience is great. An open air discotheque. Good modern music. Good DJ lineups. Life of the party!!! Awesome place to hangout with close friends or gang to shake some legs. Highly recommended!'), ('Rated 3.5', 'RATED\n  "Jungle Lounge" for a reason, with the trees and lighting. A partying hub with renowned DJ\'s playing every weekend. Friendly staff and overall a satisfactory experience.'), ('Rated 2.0', "RATED\n  After reading the reviews, I had high expectations from the place but my experience couldn't have been worse. I went there on a Friday night (without any events happening) and there were hardly 15 odd people there. They still demanded a cover with entry fees which didn't even make sense considering the low numbers. The food was bad in terms of both quantity & quality. Also, they just have overpriced starters no main course or proper dishes (300 for a Samosa). We had ordered French Fries(150), Veg Wrap(300, tasted like some stale sabji rolled in a roti), and Paneer Manchurian (300, attaching a pic to give an idea). Ambiance was nice but even then then whole place covered in dark because they didn't turn on all the lights.\nMy verdict: Don't go if nothing is happening there. Eat something before going. Drink only beer as everything else is highly overpriced ( 800 for a LIT)"), ('Rated 4.0', "RATED\n  In the middle of nowhere Rocking music with awesome DJ's. Food is ok. Ambience is thoda hatke. Must visit place to charge up yourself and to increase the blood circulation in your veins."), ('Rated 4.0', 'RATED\n  Been there a few times ... Music has always been great here. Price is moderate and if you are into psy- trance with a blend of nature kinda thingy then u must check the place out ..!!'), ('Rated 3.5', 'RATED\n  Nice place amidst jungle like setting.. Most Trance DJs play here on most weekends.. Name the genre and you get it here...\n\nComfortable ambience.. Good one at it.. Good times happen easily... Drinks are a bit highly placed though.. must go if you like that EDM once in a while...'), ('Rated 4.0', 'RATED\n  I went there for Halloween night. The beer was fairly priced and service was alright. The place was beautifully decorated and the music was good. Hence the 4'), ('Rated 2.0', "RATED\n  After reading the reviews, I had high expectations from the place but my experience couldn't have been worse. I went there on a Friday night (without any events happening) and there were hardly 15 odd people there. They still demanded a cover with entry fees which didn't even make sense considering the low numbers. The food was bad in terms of both quantity & quality. Also, they just have overpriced starters no main course or proper dishes (300 for a Samosa). We had ordered French Fries(150), Veg Wrap(300, tasted like some stale sabji rolled in a roti), and Paneer Manchurian (300, attaching a pic to give an idea). Ambiance was nice but even then then whole place covered in dark because they didn't turn on all the lights.\nMy verdict: Don't go if nothing is happening there. Eat something before going. Drink only beer as everything else is highly overpriced ( 800 for a LIT)"), ('Rated 4.0', "RATED\n  In the middle of nowhere Rocking music with awesome DJ's. Food is ok. Ambience is thoda hatke. Must visit place to charge up yourself and to increase the blood circulation in your veins."), ('Rated 4.0', 'RATED\n  Been there a few times ... Music has always been great here. Price is moderate and if you are into psy- trance with a blend of nature kinda thingy then u must check the place out ..!!'), ('Rated 3.5', 'RATED\n  Nice place amidst jungle like setting.. Most Trance DJs play here on most weekends.. Name the genre and you get it here...\n\nComfortable ambience.. Good one at it.. Good times happen easily... Drinks are a bit highly placed though.. must go if you like that EDM once in a while...'), ('Rated 4.0', 'RATED\n  I went there for Halloween night. The beer was fairly priced and service was alright. The place was beautifully decorated and the music was good. Hence the 4'), ('Rated 2.0', "RATED\n  After reading the reviews, I had high expectations from the place but my experience couldn't have been worse. I went there on a Friday night (without any events happening) and there were hardly 15 odd people there. They still demanded a cover with entry fees which didn't even make sense considering the low numbers. The food was bad in terms of both quantity & quality. Also, they just have overpriced starters no main course or proper dishes (300 for a Samosa). We had ordered French Fries(150), Veg Wrap(300, tasted like some stale sabji rolled in a roti), and Paneer Manchurian (300, attaching a pic to give an idea). Ambiance was nice but even then then whole place covered in dark because they didn't turn on all the lights.\nMy verdict: Don't go if nothing is happening there. Eat something before going. Drink only beer as everything else is highly overpriced ( 800 for a LIT)"), ('Rated 4.0', "RATED\n  In the middle of nowhere Rocking music with awesome DJ's. Food is ok. Ambience is thoda hatke. Must visit place to charge up yourself and to increase the blood circulation in your veins."), ('Rated 4.0', 'RATED\n  Been there a few times ... Music has always been great here. Price is moderate and if you are into psy- trance with a blend of nature kinda thingy then u must check the place out ..!!'), ('Rated 3.5', 'RATED\n  Nice place amidst jungle like setting.. Most Trance DJs play here on most weekends.. Name the genre and you get it here...\n\nComfortable ambience.. Good one at it.. Good times happen easily... Drinks are a bit highly placed though.. must go if you like that EDM once in a while...'), ('Rated 4.0', 'RATED\n  I went there for Halloween night. The beer was fairly priced and service was alright. The place was beautifully decorated and the music was good. Hence the 4'), ('Rated 2.0', "RATED\n  After reading the reviews, I had high expectations from the place but my experience couldn't have been worse. I went there on a Friday night (without any events happening) and there were hardly 15 odd people there. They still demanded a cover with entry fees which didn't even make sense considering the low numbers. The food was bad in terms of both quantity & quality. Also, they just have overpriced starters no main course or proper dishes (300 for a Samosa). We had ordered French Fries(150), Veg Wrap(300, tasted like some stale sabji rolled in a roti), and Paneer Manchurian (300, attaching a pic to give an idea). Ambiance was nice but even then then whole place covered in dark because they didn't turn on all the lights.\nMy verdict: Don't go if nothing is happening there. Eat something before going. Drink only beer as everything else is highly overpriced ( 800 for a LIT)"), ('Rated 4.0', "RATED\n  In the middle of nowhere Rocking music with awesome DJ's. Food is ok. Ambience is thoda hatke. Must visit place to charge up yourself and to increase the blood circulation in your veins."), ('Rated 4.0', 'RATED\n  Been there a few times ... Music has always been great here. Price is moderate and if you are into psy- trance with a blend of nature kinda thingy then u must check the place out ..!!'), ('Rated 3.5', 'RATED\n  Nice place amidst jungle like setting.. Most Trance DJs play here on most weekends.. Name the genre and you get it here...\n\nComfortable ambience.. Good one at it.. Good times happen easily... Drinks are a bit highly placed though.. must go if you like that EDM once in a while...'), ('Rated 4.0', 'RATED\n  I went there for Halloween night. The beer was fairly priced and service was alright. The place was beautifully decorated and the music was good. Hence the 4'), ('Rated 2.0', "RATED\n  After reading the reviews, I had high expectations from the place but my experience couldn't have been worse. I went there on a Friday night (without any events happening) and there were hardly 15 odd people there. They still demanded a cover with entry fees which didn't even make sense considering the low numbers. The food was bad in terms of both quantity & quality. Also, they just have overpriced starters no main course or proper dishes (300 for a Samosa). We had ordered French Fries(150), Veg Wrap(300, tasted like some stale sabji rolled in a roti), and Paneer Manchurian (300, attaching a pic to give an idea). Ambiance was nice but even then then whole place covered in dark because they didn't turn on all the lights.\nMy verdict: Don't go if nothing is happening there. Eat something before going. Drink only beer as everything else is highly overpriced ( 800 for a LIT)"), ('Rated 4.0', "RATED\n  In the middle of nowhere Rocking music with awesome DJ's. Food is ok. Ambience is thoda hatke. Must visit place to charge up yourself and to increase the blood circulation in your veins."), ('Rated 4.0', 'RATED\n  Been there a few times ... Music has always been great here. Price is moderate and if you are into psy- trance with a blend of nature kinda thingy then u must check the place out ..!!'), ('Rated 3.5', 'RATED\n  Nice place amidst jungle like setting.. Most Trance DJs play here on most weekends.. Name the genre and you get it here...\n\nComfortable ambience.. Good one at it.. Good times happen easily... Drinks are a bit highly placed though.. must go if you like that EDM once in a while...'), ('Rated 4.0', 'RATED\n  I went there for Halloween night. The beer was fairly priced and service was alright. The place was beautifully decorated and the music was good. Hence the 4'), ('Rated 3.0', 'RATED\n  Went here a long time back and there are more psy- trance gigs happening here. A Budweiser is priced at Rs 200/-. The place has got a jungle like setup and is nothing great.'), ('Rated 4.0', 'RATED\n  Have been to this place couple of times for Kitsch Mandi. This place rocks during the festival. The bands are excellent and the food stalls are descent enough to munch something.'), ('Rated 4.0', "RATED\n  Came here for a party some time ago. Good DJ! Danced a lot. Didn't really eat anything,  yet had a good experience! Ambiance is wonderful for a day party."), ('Rated 3.0', 'RATED\n  Went here a long time back and there are more psy- trance gigs happening here. A Budweiser is priced at Rs 200/-. The place has got a jungle like setup and is nothing great.'), ('Rated 4.0', 'RATED\n  Have been to this place couple of times for Kitsch Mandi. This place rocks during the festival. The bands are excellent and the food stalls are descent enough to munch something.'), ('Rated 4.0', "RATED\n  Came here for a party some time ago. Good DJ! Danced a lot. Didn't really eat anything,  yet had a good experience! Ambiance is wonderful for a day party."), ('Rated 3.0', 'RATED\n  Went here a long time back and there are more psy- trance gigs happening here. A Budweiser is priced at Rs 200/-. The place has got a jungle like setup and is nothing great.'), ('Rated 4.0', 'RATED\n  Have been to this place couple of times for Kitsch Mandi. This place rocks during the festival. The bands are excellent and the food stalls are descent enough to munch something.'), ('Rated 4.0', "RATED\n  Came here for a party some time ago. Good DJ! Danced a lot. Didn't really eat anything,  yet had a good experience! Ambiance is wonderful for a day party."), ('Rated 3.0', 'RATED\n  Went here a long time back and there are more psy- trance gigs happening here. A Budweiser is priced at Rs 200/-. The place has got a jungle like setup and is nothing great.'), ('Rated 4.0', 'RATED\n  Have been to this place couple of times for Kitsch Mandi. This place rocks during the festival. The bands are excellent and the food stalls are descent enough to munch something.'), ('Rated 4.0', "RATED\n  Came here for a party some time ago. Good DJ! Danced a lot. Didn't really eat anything,  yet had a good experience! Ambiance is wonderful for a day party."), ('Rated 1.0', "RATED\n  Weaste of money nothing is there don't go and weaste your money ... weaste weaste weaste of money ."), ('Rated 4.5', 'RATED\n  This place is the BOMB! I went for the Bangalore Food Truck and Music Festival here and boy was I impressed. The place has a vast expanse and a nice jungle feel to it. They have really nice seating and a great dancing area. The decor for the festival was Bang On ; full with tyres, cassettes and beautiful Fairy Lights. They had a host of bands and artists lined up. The music kept us jumping all evening. Since the place is so awesome the crowd invariably was awesome-er.\nThe booze is quite expensive inside considering it is a lounge. Even a bottle of water costs Rs.100! So drink here at your own risk! :P\nOverall the music and the ambiance win brownie points from me.\nGo here to have a good time!\n\nthechubgrubsandtravels.blogspot.com'), ('Rated 4.5', 'RATED\n  Tuesday nights... "Girls night" famous for free entry and booze for girls. Place has a jungle theme which is turned into a stylish ambience. They are famous for their DJ parties and I must say you will have fun on their tracks. To hangout over weekdays that too with an intension of full enjoyment, this is one place which should be taken into consideration. One important thing is, if you wanna have fun in DJ nights do check-in between 9 to 9.30 as crowd will be at peak.'), ('Rated 3.5', 'RATED\n  Decent venue... The crowd was good and fortunately for me... Rohan Kapoor was playing last night. Food was good and the booze too. But the place is a tad expensive when compared to other lounges. Also... The dance floor was unlevelled which was a problem while dancing. Otherwise... The ambience is really good and gives a perfect jungle lounge experience. So.. Thanks guys. Cheers.'), ('Rated 1.0', "RATED\n  Weaste of money nothing is there don't go and weaste your money ... weaste weaste weaste of money ."), ('Rated 4.5', 'RATED\n  This place is the BOMB! I went for the Bangalore Food Truck and Music Festival here and boy was I impressed. The place has a vast expanse and a nice jungle feel to it. They have really nice seating and a great dancing area. The decor for the festival was Bang On ; full with tyres, cassettes and beautiful Fairy Lights. They had a host of bands and artists lined up. The music kept us jumping all evening. Since the place is so awesome the crowd invariably was awesome-er.\nThe booze is quite expensive inside considering it is a lounge. Even a bottle of water costs Rs.100! So drink here at your own risk! :P\nOverall the music and the ambiance win brownie points from me.\nGo here to have a good time!\n\nthechubgrubsandtravels.blogspot.com'), ('Rated 4.5', 'RATED\n  Tuesday nights... "Girls night" famous for free entry and booze for girls. Place has a jungle theme which is turned into a stylish ambience. They are famous for their DJ parties and I must say you will have fun on their tracks. To hangout over weekdays that too with an intension of full enjoyment, this is one place which should be taken into consideration. One important thing is, if you wanna have fun in DJ nights do check-in between 9 to 9.30 as crowd will be at peak.'), ('Rated 3.5', 'RATED\n  Decent venue... The crowd was good and fortunately for me... Rohan Kapoor was playing last night. Food was good and the booze too. But the place is a tad expensive when compared to other lounges. Also... The dance floor was unlevelled which was a problem while dancing. Otherwise... The ambience is really good and gives a perfect jungle lounge experience. So.. Thanks guys. Cheers.'), ('Rated 1.0', "RATED\n  Weaste of money nothing is there don't go and weaste your money ... weaste weaste weaste of money ."), ('Rated 4.5', 'RATED\n  This place is the BOMB! I went for the Bangalore Food Truck and Music Festival here and boy was I impressed. The place has a vast expanse and a nice jungle feel to it. They have really nice seating and a great dancing area. The decor for the festival was Bang On ; full with tyres, cassettes and beautiful Fairy Lights. They had a host of bands and artists lined up. The music kept us jumping all evening. Since the place is so awesome the crowd invariably was awesome-er.\nThe booze is quite expensive inside considering it is a lounge. Even a bottle of water costs Rs.100! So drink here at your own risk! :P\nOverall the music and the ambiance win brownie points from me.\nGo here to have a good time!\n\nthechubgrubsandtravels.blogspot.com'), ('Rated 4.5', 'RATED\n  Tuesday nights... "Girls night" famous for free entry and booze for girls. Place has a jungle theme which is turned into a stylish ambience. They are famous for their DJ parties and I must say you will have fun on their tracks. To hangout over weekdays that too with an intension of full enjoyment, this is one place which should be taken into consideration. One important thing is, if you wanna have fun in DJ nights do check-in between 9 to 9.30 as crowd will be at peak.'), ('Rated 3.5', 'RATED\n  Decent venue... The crowd was good and fortunately for me... Rohan Kapoor was playing last night. Food was good and the booze too. But the place is a tad expensive when compared to other lounges. Also... The dance floor was unlevelled which was a problem while dancing. Otherwise... The ambience is really good and gives a perfect jungle lounge experience. So.. Thanks guys. Cheers.'), ('Rated 1.0', "RATED\n  Weaste of money nothing is there don't go and weaste your money ... weaste weaste weaste of money ."), ('Rated 4.5', 'RATED\n  This place is the BOMB! I went for the Bangalore Food Truck and Music Festival here and boy was I impressed. The place has a vast expanse and a nice jungle feel to it. They have really nice seating and a great dancing area. The decor for the festival was Bang On ; full with tyres, cassettes and beautiful Fairy Lights. They had a host of bands and artists lined up. The music kept us jumping all evening. Since the place is so awesome the crowd invariably was awesome-er.\nThe booze is quite expensive inside considering it is a lounge. Even a bottle of water costs Rs.100! So drink here at your own risk! :P\nOverall the music and the ambiance win brownie points from me.\nGo here to have a good time!\n\nthechubgrubsandtravels.blogspot.com'), ('Rated 4.5', 'RATED\n  Tuesday nights... "Girls night" famous for free entry and booze for girls. Place has a jungle theme which is turned into a stylish ambience. They are famous for their DJ parties and I must say you will have fun on their tracks. To hangout over weekdays that too with an intension of full enjoyment, this is one place which should be taken into consideration. One important thing is, if you wanna have fun in DJ nights do check-in between 9 to 9.30 as crowd will be at peak.'), ('Rated 3.5', 'RATED\n  Decent venue... The crowd was good and fortunately for me... Rohan Kapoor was playing last night. Food was good and the booze too. But the place is a tad expensive when compared to other lounges. Also... The dance floor was unlevelled which was a problem while dancing. Otherwise... The ambience is really good and gives a perfect jungle lounge experience. So.. Thanks guys. Cheers.'), ('Rated 3.5', "RATED\n  It was Tuesday night few of my friends wanted to go to party so we decided to go to this place, it's lil difficult to locate the place but once we rechd there I liked the ambience it's open n huge from inside, Dj was playing oldies shaggy n apache Indian n all overall it's gud place to hang out food n drink was avergae."), ('Rated 1.0', "RATED\n  Worst night club in whole Bangalore. Poor food, rude staff, super high rates, no crowd, stupid DJ. All the negative things you can imagine about a place are packed into this. Great job by the owners!\n\n- Please don't go by the average rating. It can't be 3.6 experience, it's -3.6 (negative) IMO.\n- Reviews are strange too. Don't just read 'Popular' reviews, glance through all reviews and you'll find actual negative ones by genuine people who feel cheated by this place."), ('Rated 1.5', 'RATED\n  It must be good earlier but, i went yesterday and its very bad as per standards here. The staff is rude. Food and music is average. Giving it 1.5 star and will never visit it again..'), ('Rated 4.5', 'RATED\n  I must say one of the best place in Bangalore for trans lovers. Music will have full control on you body.\n\nThis place has an ambiance of jungle. You will simply love it.\n\nThis place attracts awesome crowd of Bangalore that will simply blow your mind. Please go solo if you want to check out the crowd Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c else you will be in trouble.\n\nFood, service is good. Staff are very very friendly and they love to interact with you. You will feel like they know you.\n\nOnly drawback is that every time you order you need to pay at that moment which at times becomes irritating.'), ('Rated 3.5', "RATED\n  It was Tuesday night few of my friends wanted to go to party so we decided to go to this place, it's lil difficult to locate the place but once we rechd there I liked the ambience it's open n huge from inside, Dj was playing oldies shaggy n apache Indian n all overall it's gud place to hang out food n drink was avergae."), ('Rated 1.0', "RATED\n  Worst night club in whole Bangalore. Poor food, rude staff, super high rates, no crowd, stupid DJ. All the negative things you can imagine about a place are packed into this. Great job by the owners!\n\n- Please don't go by the average rating. It can't be 3.6 experience, it's -3.6 (negative) IMO.\n- Reviews are strange too. Don't just read 'Popular' reviews, glance through all reviews and you'll find actual negative ones by genuine people who feel cheated by this place."), ('Rated 1.5', 'RATED\n  It must be good earlier but, i went yesterday and its very bad as per standards here. The staff is rude. Food and music is average. Giving it 1.5 star and will never visit it again..'), ('Rated 4.5', 'RATED\n  I must say one of the best place in Bangalore for trans lovers. Music will have full control on you body.\n\nThis place has an ambiance of jungle. You will simply love it.\n\nThis place attracts awesome crowd of Bangalore that will simply blow your mind. Please go solo if you want to check out the crowd Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c else you will be in trouble.\n\nFood, service is good. Staff are very very friendly and they love to interact with you. You will feel like they know you.\n\nOnly drawback is that every time you order you need to pay at that moment which at times becomes irritating.'), ('Rated 3.5', "RATED\n  It was Tuesday night few of my friends wanted to go to party so we decided to go to this place, it's lil difficult to locate the place but once we rechd there I liked the ambience it's open n huge from inside, Dj was playing oldies shaggy n apache Indian n all overall it's gud place to hang out food n drink was avergae."), ('Rated 1.0', "RATED\n  Worst night club in whole Bangalore. Poor food, rude staff, super high rates, no crowd, stupid DJ. All the negative things you can imagine about a place are packed into this. Great job by the owners!\n\n- Please don't go by the average rating. It can't be 3.6 experience, it's -3.6 (negative) IMO.\n- Reviews are strange too. Don't just read 'Popular' reviews, glance through all reviews and you'll find actual negative ones by genuine people who feel cheated by this place."), ('Rated 1.5', 'RATED\n  It must be good earlier but, i went yesterday and its very bad as per standards here. The staff is rude. Food and music is average. Giving it 1.5 star and will never visit it again..'), ('Rated 4.5', 'RATED\n  I must say one of the best place in Bangalore for trans lovers. Music will have full control on you body.\n\nThis place has an ambiance of jungle. You will simply love it.\n\nThis place attracts awesome crowd of Bangalore that will simply blow your mind. Please go solo if you want to check out the crowd Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c else you will be in trouble.\n\nFood, service is good. Staff are very very friendly and they love to interact with you. You will feel like they know you.\n\nOnly drawback is that every time you order you need to pay at that moment which at times becomes irritating.'), ('Rated 3.5', "RATED\n  It was Tuesday night few of my friends wanted to go to party so we decided to go to this place, it's lil difficult to locate the place but once we rechd there I liked the ambience it's open n huge from inside, Dj was playing oldies shaggy n apache Indian n all overall it's gud place to hang out food n drink was avergae."), ('Rated 1.0', "RATED\n  Worst night club in whole Bangalore. Poor food, rude staff, super high rates, no crowd, stupid DJ. All the negative things you can imagine about a place are packed into this. Great job by the owners!\n\n- Please don't go by the average rating. It can't be 3.6 experience, it's -3.6 (negative) IMO.\n- Reviews are strange too. Don't just read 'Popular' reviews, glance through all reviews and you'll find actual negative ones by genuine people who feel cheated by this place."), ('Rated 1.5', 'RATED\n  It must be good earlier but, i went yesterday and its very bad as per standards here. The staff is rude. Food and music is average. Giving it 1.5 star and will never visit it again..'), ('Rated 4.5', 'RATED\n  I must say one of the best place in Bangalore for trans lovers. Music will have full control on you body.\n\nThis place has an ambiance of jungle. You will simply love it.\n\nThis place attracts awesome crowd of Bangalore that will simply blow your mind. Please go solo if you want to check out the crowd Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c else you will be in trouble.\n\nFood, service is good. Staff are very very friendly and they love to interact with you. You will feel like they know you.\n\nOnly drawback is that every time you order you need to pay at that moment which at times becomes irritating.'), ('Rated 1.0', 'RATED\n  Worst place ever, fail people and EDM organizers! I went for a party here and they cut the music by 12:30 and its very expensive for a place like that.'), ('Rated 2.0', 'RATED\n  Good music... It has an open area which gives u a little jungle kinda feel.But staff is not friendly and the day we went it seemed like there was more of a +2 crowd!!!They serve drinks in plastic glasses which was a big turn off..I hated the wine they served and had to dilute it with Pepsi so that it becomes drinkable.Overall, I would not want to visit this place again.'), ('Rated 1.0', "RATED\n  Don't know why this is rated, so high. Maybe it was great in the past or something. But this place is really not worth a penny. The taste of the food, the ambience, the way the food served, everything is terrible. Upon that, the loud music played by the DJ, which is really not international as claimed. Common. The food is served in thermocoal plates, which makes them look so cheap. They charge exorbitant prices, which is way above than a 5 star hotel. Adding to the woes, the insects and a largely unimpressive seating. Would always remember this place for the worst experience I have ever had."), ('Rated 3.5', "RATED\n  I don't party much!\nBut this is one place where I go when I have a party mind!\nGood crowd and amazing music.\nThe best DJs play here.\nFor me party = pebbles"), ('Rated 5.0', 'RATED\n  bhai log its the place. i had only beer and beer so cant say abt food. but its THE place to be. biggest disco arena and plenty of space to roam/sit/dance/lying.\nthough the place is bit tough to find for 1st timer but once u will get it thn u r just gonna love it. DJ was perfect and knows what to play and when.\nTwo dance floor together one for Hip/Hop and other for trans and dance move.\nJust love it guys and explore the hidden gem in Bengaluru :)'), ('Rated 1.0', 'RATED\n  Worst place ever, fail people and EDM organizers! I went for a party here and they cut the music by 12:30 and its very expensive for a place like that.'), ('Rated 2.0', 'RATED\n  Good music... It has an open area which gives u a little jungle kinda feel.But staff is not friendly and the day we went it seemed like there was more of a +2 crowd!!!They serve drinks in plastic glasses which was a big turn off..I hated the wine they served and had to dilute it with Pepsi so that it becomes drinkable.Overall, I would not want to visit this place again.'), ('Rated 1.0', "RATED\n  Don't know why this is rated, so high. Maybe it was great in the past or something. But this place is really not worth a penny. The taste of the food, the ambience, the way the food served, everything is terrible. Upon that, the loud music played by the DJ, which is really not international as claimed. Common. The food is served in thermocoal plates, which makes them look so cheap. They charge exorbitant prices, which is way above than a 5 star hotel. Adding to the woes, the insects and a largely unimpressive seating. Would always remember this place for the worst experience I have ever had."), ('Rated 3.5', "RATED\n  I don't party much!\nBut this is one place where I go when I have a party mind!\nGood crowd and amazing music.\nThe best DJs play here.\nFor me party = pebbles"), ('Rated 5.0', 'RATED\n  bhai log its the place. i had only beer and beer so cant say abt food. but its THE place to be. biggest disco arena and plenty of space to roam/sit/dance/lying.\nthough the place is bit tough to find for 1st timer but once u will get it thn u r just gonna love it. DJ was perfect and knows what to play and when.\nTwo dance floor together one for Hip/Hop and other for trans and dance move.\nJust love it guys and explore the hidden gem in Bengaluru :)'), ('Rated 1.0', 'RATED\n  Worst place ever, fail people and EDM organizers! I went for a party here and they cut the music by 12:30 and its very expensive for a place like that.'), ('Rated 2.0', 'RATED\n  Good music... It has an open area which gives u a little jungle kinda feel.But staff is not friendly and the day we went it seemed like there was more of a +2 crowd!!!They serve drinks in plastic glasses which was a big turn off..I hated the wine they served and had to dilute it with Pepsi so that it becomes drinkable.Overall, I would not want to visit this place again.'), ('Rated 1.0', "RATED\n  Don't know why this is rated, so high. Maybe it was great in the past or something. But this place is really not worth a penny. The taste of the food, the ambience, the way the food served, everything is terrible. Upon that, the loud music played by the DJ, which is really not international as claimed. Common. The food is served in thermocoal plates, which makes them look so cheap. They charge exorbitant prices, which is way above than a 5 star hotel. Adding to the woes, the insects and a largely unimpressive seating. Would always remember this place for the worst experience I have ever had."), ('Rated 3.5', "RATED\n  I don't party much!\nBut this is one place where I go when I have a party mind!\nGood crowd and amazing music.\nThe best DJs play here.\nFor me party = pebbles"), ('Rated 5.0', 'RATED\n  bhai log its the place. i had only beer and beer so cant say abt food. but its THE place to be. biggest disco arena and plenty of space to roam/sit/dance/lying.\nthough the place is bit tough to find for 1st timer but once u will get it thn u r just gonna love it. DJ was perfect and knows what to play and when.\nTwo dance floor together one for Hip/Hop and other for trans and dance move.\nJust love it guys and explore the hidden gem in Bengaluru :)'), ('Rated 1.0', 'RATED\n  Worst place ever, fail people and EDM organizers! I went for a party here and they cut the music by 12:30 and its very expensive for a place like that.'), ('Rated 2.0', 'RATED\n  Good music... It has an open area which gives u a little jungle kinda feel.But staff is not friendly and the day we went it seemed like there was more of a +2 crowd!!!They serve drinks in plastic glasses which was a big turn off..I hated the wine they served and had to dilute it with Pepsi so that it becomes drinkable.Overall, I would not want to visit this place again.'), ('Rated 1.0', "RATED\n  Don't know why this is rated, so high. Maybe it was great in the past or something. But this place is really not worth a penny. The taste of the food, the ambience, the way the food served, everything is terrible. Upon that, the loud music played by the DJ, which is really not international as claimed. Common. The food is served in thermocoal plates, which makes them look so cheap. They charge exorbitant prices, which is way above than a 5 star hotel. Adding to the woes, the insects and a largely unimpressive seating. Would always remember this place for the worst experience I have ever had."), ('Rated 3.5', "RATED\n  I don't party much!\nBut this is one place where I go when I have a party mind!\nGood crowd and amazing music.\nThe best DJs play here.\nFor me party = pebbles"), ('Rated 5.0', 'RATED\n  bhai log its the place. i had only beer and beer so cant say abt food. but its THE place to be. biggest disco arena and plenty of space to roam/sit/dance/lying.\nthough the place is bit tough to find for 1st timer but once u will get it thn u r just gonna love it. DJ was perfect and knows what to play and when.\nTwo dance floor together one for Hip/Hop and other for trans and dance move.\nJust love it guys and explore the hidden gem in Bengaluru :)'), ('Rated 5.0', "RATED\n  One of my favourite places to party hard with friends in bangalore; very close by to Sadashivnagar. The staff here is extremely good and very helpful as well. The ambience stands out; as it gives a totally different experience compared to the typical lounges in bangalore. I keep visiting the events organised by pebbles, various dj's from different places play here. I have never been disappointed by the music, atmosphere of my numerous visits. Please keep a tab on their social media page so that you are aware of the events happening here. I would definitely love to go back again to this place."), ('Rated 5.0', 'RATED\n  Had a amazing night @ pebble the place and music was toooo good..\n"Ajjay" hats off too man.\nAwesome party\nOnly one drawback was the menu price was tooo high.. Over all ??'), ('Rated 3.0', "RATED\n  Pebble is a place where you can party hard.. It's like partying in the jungle.. Open space. U get to wander around the place.. Friendly staff and good music. Plus you can sit around wherever you want. Drink where ever you want and dance where ever you want.. Happy place with happy people."), ('Rated 4.0', 'RATED\n  Perfect place for dancing, ladies night, expensive food, great ambience like of a forest, and pepper chicken isnt anything great! difficult to find as you cant see it from the road its inside Princess Academy gate'), ('Rated 4.5', "RATED\n  Well I don't go out to places to enjoy the food and it's mostly about the kind of feel it gives you. And this place takes out the zombie dance pulls you have buried in you .\nIt's kind of gives you the rusty secret party place feel.\nYou will love the EDM. I only had issues with the bouncers who think they can do anything to you but don't bother you much once you are inside ."), ('Rated 5.0', "RATED\n  One of my favourite places to party hard with friends in bangalore; very close by to Sadashivnagar. The staff here is extremely good and very helpful as well. The ambience stands out; as it gives a totally different experience compared to the typical lounges in bangalore. I keep visiting the events organised by pebbles, various dj's from different places play here. I have never been disappointed by the music, atmosphere of my numerous visits. Please keep a tab on their social media page so that you are aware of the events happening here. I would definitely love to go back again to this place."), ('Rated 5.0', 'RATED\n  Had a amazing night @ pebble the place and music was toooo good..\n"Ajjay" hats off too man.\nAwesome party\nOnly one drawback was the menu price was tooo high.. Over all ??'), ('Rated 3.0', "RATED\n  Pebble is a place where you can party hard.. It's like partying in the jungle.. Open space. U get to wander around the place.. Friendly staff and good music. Plus you can sit around wherever you want. Drink where ever you want and dance where ever you want.. Happy place with happy people."), ('Rated 4.0', 'RATED\n  Perfect place for dancing, ladies night, expensive food, great ambience like of a forest, and pepper chicken isnt anything great! difficult to find as you cant see it from the road its inside Princess Academy gate'), ('Rated 4.5', "RATED\n  Well I don't go out to places to enjoy the food and it's mostly about the kind of feel it gives you. And this place takes out the zombie dance pulls you have buried in you .\nIt's kind of gives you the rusty secret party place feel.\nYou will love the EDM. I only had issues with the bouncers who think they can do anything to you but don't bother you much once you are inside ."), ('Rated 5.0', "RATED\n  One of my favourite places to party hard with friends in bangalore; very close by to Sadashivnagar. The staff here is extremely good and very helpful as well. The ambience stands out; as it gives a totally different experience compared to the typical lounges in bangalore. I keep visiting the events organised by pebbles, various dj's from different places play here. I have never been disappointed by the music, atmosphere of my numerous visits. Please keep a tab on their social media page so that you are aware of the events happening here. I would definitely love to go back again to this place."), ('Rated 5.0', 'RATED\n  Had a amazing night @ pebble the place and music was toooo good..\n"Ajjay" hats off too man.\nAwesome party\nOnly one drawback was the menu price was tooo high.. Over all ??'), ('Rated 3.0', "RATED\n  Pebble is a place where you can party hard.. It's like partying in the jungle.. Open space. U get to wander around the place.. Friendly staff and good music. Plus you can sit around wherever you want. Drink where ever you want and dance where ever you want.. Happy place with happy people."), ('Rated 4.0', 'RATED\n  Perfect place for dancing, ladies night, expensive food, great ambience like of a forest, and pepper chicken isnt anything great! difficult to find as you cant see it from the road its inside Princess Academy gate'), ('Rated 4.5', "RATED\n  Well I don't go out to places to enjoy the food and it's mostly about the kind of feel it gives you. And this place takes out the zombie dance pulls you have buried in you .\nIt's kind of gives you the rusty secret party place feel.\nYou will love the EDM. I only had issues with the bouncers who think they can do anything to you but don't bother you much once you are inside ."), ('Rated 5.0', "RATED\n  One of my favourite places to party hard with friends in bangalore; very close by to Sadashivnagar. The staff here is extremely good and very helpful as well. The ambience stands out; as it gives a totally different experience compared to the typical lounges in bangalore. I keep visiting the events organised by pebbles, various dj's from different places play here. I have never been disappointed by the music, atmosphere of my numerous visits. Please keep a tab on their social media page so that you are aware of the events happening here. I would definitely love to go back again to this place."), ('Rated 5.0', 'RATED\n  Had a amazing night @ pebble the place and music was toooo good..\n"Ajjay" hats off too man.\nAwesome party\nOnly one drawback was the menu price was tooo high.. Over all ??'), ('Rated 3.0', "RATED\n  Pebble is a place where you can party hard.. It's like partying in the jungle.. Open space. U get to wander around the place.. Friendly staff and good music. Plus you can sit around wherever you want. Drink where ever you want and dance where ever you want.. Happy place with happy people."), ('Rated 4.0', 'RATED\n  Perfect place for dancing, ladies night, expensive food, great ambience like of a forest, and pepper chicken isnt anything great! difficult to find as you cant see it from the road its inside Princess Academy gate'), ('Rated 4.5', "RATED\n  Well I don't go out to places to enjoy the food and it's mostly about the kind of feel it gives you. And this place takes out the zombie dance pulls you have buried in you .\nIt's kind of gives you the rusty secret party place feel.\nYou will love the EDM. I only had issues with the bouncers who think they can do anything to you but don't bother you much once you are inside ."), ('Rated 4.5', 'RATED\n  One of the best discos in town. The DJ was really good. The crowd, the best. Drinks are bit on the expensive side though.\nYou like to party? this is the place you have to go !! ????'), ('Rated 2.5', 'RATED\n  Pebbles they say is the best dancing club in bangalore but trust me it is not. The only good thing about pebbles is music, no dance floor, food not good and is costly'), ('Rated 1.0', "RATED\n  Now this place sucks!!! Once it use to be a place for dance daru and masti of course with a price.Now the only thing which is left is Price. Entry:Sky highDJ:Not thereFloor:Only for couplesStaff:Damn rudeBeer:They serve only leftovers.(If u'll ask for a different brand Sorry u will have to face the arrogance of bartender without finding your drink)I don't know what happens to places like these after little success.Don't go if u don't want to spoil your time."), ('Rated 1.0', "RATED\n  Pebbles is a true definition of terribleness. We were there for the nye party on the 31st night. The entry ticket costed 5000 per couple which included unlimited alcohol and starters. In fact there were nothing worth to be called starters and they served cheap liquor with lots of ice and water but very less liquor!!!and the starters were just baked potato and Gobi, the non veg had only one small piece of fried chicken along with the veggies...the caterer was also very rude to respond....\nThere were also paid food counters which also had only chicken, no veg options were available except for the ground nut masala!!! The food (starters) was exceptionally bad. Didn't except them to screw even that. Overall its a pathetic experience..."), ('Rated 2.5', 'RATED\n  Go there, if the music and the DJ does it all for you to be in a good mood coz if you are expecting anything else from that place  you my dear, have definitely landed yourself at wrong. First of all if you are visiting the first time,  Good luck finding it coz there is no sign board mentioning pebble at or near the place, (may be it was too much effort for them) and when you finally managed to reach  there, you  will be pointed out  at, for drinking too much on a ladies night by the bartender,  who will be serving you vodka out of a kinley plastic bottle and the wine i had there could easily compete for the worst wine ever and win.  So, if drinks or service or behavior matters squat to you , you would love the place.'), ('Rated 4.5', 'RATED\n  One of the best discos in town. The DJ was really good. The crowd, the best. Drinks are bit on the expensive side though.\nYou like to party? this is the place you have to go !! ????'), ('Rated 2.5', 'RATED\n  Pebbles they say is the best dancing club in bangalore but trust me it is not. The only good thing about pebbles is music, no dance floor, food not good and is costly'), ('Rated 1.0', "RATED\n  Now this place sucks!!! Once it use to be a place for dance daru and masti of course with a price.Now the only thing which is left is Price. Entry:Sky highDJ:Not thereFloor:Only for couplesStaff:Damn rudeBeer:They serve only leftovers.(If u'll ask for a different brand Sorry u will have to face the arrogance of bartender without finding your drink)I don't know what happens to places like these after little success.Don't go if u don't want to spoil your time."), ('Rated 1.0', "RATED\n  Pebbles is a true definition of terribleness. We were there for the nye party on the 31st night. The entry ticket costed 5000 per couple which included unlimited alcohol and starters. In fact there were nothing worth to be called starters and they served cheap liquor with lots of ice and water but very less liquor!!!and the starters were just baked potato and Gobi, the non veg had only one small piece of fried chicken along with the veggies...the caterer was also very rude to respond....\nThere were also paid food counters which also had only chicken, no veg options were available except for the ground nut masala!!! The food (starters) was exceptionally bad. Didn't except them to screw even that. Overall its a pathetic experience..."), ('Rated 2.5', 'RATED\n  Go there, if the music and the DJ does it all for you to be in a good mood coz if you are expecting anything else from that place  you my dear, have definitely landed yourself at wrong. First of all if you are visiting the first time,  Good luck finding it coz there is no sign board mentioning pebble at or near the place, (may be it was too much effort for them) and when you finally managed to reach  there, you  will be pointed out  at, for drinking too much on a ladies night by the bartender,  who will be serving you vodka out of a kinley plastic bottle and the wine i had there could easily compete for the worst wine ever and win.  So, if drinks or service or behavior matters squat to you , you would love the place.'), ('Rated 4.5', 'RATED\n  One of the best discos in town. The DJ was really good. The crowd, the best. Drinks are bit on the expensive side though.\nYou like to party? this is the place you have to go !! ????'), ('Rated 2.5', 'RATED\n  Pebbles they say is the best dancing club in bangalore but trust me it is not. The only good thing about pebbles is music, no dance floor, food not good and is costly'), ('Rated 1.0', "RATED\n  Now this place sucks!!! Once it use to be a place for dance daru and masti of course with a price.Now the only thing which is left is Price. Entry:Sky highDJ:Not thereFloor:Only for couplesStaff:Damn rudeBeer:They serve only leftovers.(If u'll ask for a different brand Sorry u will have to face the arrogance of bartender without finding your drink)I don't know what happens to places like these after little success.Don't go if u don't want to spoil your time."), ('Rated 1.0', "RATED\n  Pebbles is a true definition of terribleness. We were there for the nye party on the 31st night. The entry ticket costed 5000 per couple which included unlimited alcohol and starters. In fact there were nothing worth to be called starters and they served cheap liquor with lots of ice and water but very less liquor!!!and the starters were just baked potato and Gobi, the non veg had only one small piece of fried chicken along with the veggies...the caterer was also very rude to respond....\nThere were also paid food counters which also had only chicken, no veg options were available except for the ground nut masala!!! The food (starters) was exceptionally bad. Didn't except them to screw even that. Overall its a pathetic experience..."), ('Rated 2.5', 'RATED\n  Go there, if the music and the DJ does it all for you to be in a good mood coz if you are expecting anything else from that place  you my dear, have definitely landed yourself at wrong. First of all if you are visiting the first time,  Good luck finding it coz there is no sign board mentioning pebble at or near the place, (may be it was too much effort for them) and when you finally managed to reach  there, you  will be pointed out  at, for drinking too much on a ladies night by the bartender,  who will be serving you vodka out of a kinley plastic bottle and the wine i had there could easily compete for the worst wine ever and win.  So, if drinks or service or behavior matters squat to you , you would love the place.'), ('Rated 1.0', "RATED\n  The standards have gone down drastically..... No dance floor for STAGS... Sad to know that nobody mentioned this while we paid for the entry.... Sadness doesn't end here... Been there before... Bt its NT the same.... Typing this review while still there.... The staff is not at all happy to see us..... The standards are highly LOW..... Oh and forgot to mention my frnd paid with a Citibank credit card and he didn't get a discount tht ZOMATO claimed we would get.... Jst finishing up with the cover charge and going somewhere to ENJOY"), ('Rated 1.0', 'RATED\n  Went to this place with a lot of high expectations.. But I think it is overpriced and neither the food nor the drinks are worth it. They served food in paper plates, drinks in plastic cups yet the prices were simply outrageous. Even if you look past the price , the portions were less and it tasted very mediocre.'), ('Rated 3.0', "RATED\n  Quite a happening hotspot in the middle of the city with outrageous prices on drinks which greatly reduces it's appeal to me. Go here with friends and make sure to have a drink or two before you hit it or be ready to shell out a lot more than you thought."), ('Rated 4.0', 'RATED\n  I love this place what I can say. I dont need to explain this place any further but zomato need 140 letters. So, i would like to add that I love to see people dancing under the Banyan tree feel like partying in a jungle.'), ('Rated 4.0', "RATED\n  Pebble,\nHeard a lot about this place and been here on sat night, nice and decent forest lounge/pub. Drinks and food are very expensive. but, after u enjoy the dj ul forget every rupee spent, people are crazy here and they dance like anything here, it's a nice place to spend your weekend.\nAbout food baby corn Manchurian is good and pepper chicken is ok, but up end up eating only very few items with coupons given to u."), ('Rated 1.0', "RATED\n  The standards have gone down drastically..... No dance floor for STAGS... Sad to know that nobody mentioned this while we paid for the entry.... Sadness doesn't end here... Been there before... Bt its NT the same.... Typing this review while still there.... The staff is not at all happy to see us..... The standards are highly LOW..... Oh and forgot to mention my frnd paid with a Citibank credit card and he didn't get a discount tht ZOMATO claimed we would get.... Jst finishing up with the cover charge and going somewhere to ENJOY"), ('Rated 1.0', 'RATED\n  Went to this place with a lot of high expectations.. But I think it is overpriced and neither the food nor the drinks are worth it. They served food in paper plates, drinks in plastic cups yet the prices were simply outrageous. Even if you look past the price , the portions were less and it tasted very mediocre.'), ('Rated 3.0', "RATED\n  Quite a happening hotspot in the middle of the city with outrageous prices on drinks which greatly reduces it's appeal to me. Go here with friends and make sure to have a drink or two before you hit it or be ready to shell out a lot more than you thought."), ('Rated 4.0', 'RATED\n  I love this place what I can say. I dont need to explain this place any further but zomato need 140 letters. So, i would like to add that I love to see people dancing under the Banyan tree feel like partying in a jungle.'), ('Rated 4.0', "RATED\n  Pebble,\nHeard a lot about this place and been here on sat night, nice and decent forest lounge/pub. Drinks and food are very expensive. but, after u enjoy the dj ul forget every rupee spent, people are crazy here and they dance like anything here, it's a nice place to spend your weekend.\nAbout food baby corn Manchurian is good and pepper chicken is ok, but up end up eating only very few items with coupons given to u."), ('Rated 1.0', "RATED\n  The standards have gone down drastically..... No dance floor for STAGS... Sad to know that nobody mentioned this while we paid for the entry.... Sadness doesn't end here... Been there before... Bt its NT the same.... Typing this review while still there.... The staff is not at all happy to see us..... The standards are highly LOW..... Oh and forgot to mention my frnd paid with a Citibank credit card and he didn't get a discount tht ZOMATO claimed we would get.... Jst finishing up with the cover charge and going somewhere to ENJOY"), ('Rated 1.0', 'RATED\n  Went to this place with a lot of high expectations.. But I think it is overpriced and neither the food nor the drinks are worth it. They served food in paper plates, drinks in plastic cups yet the prices were simply outrageous. Even if you look past the price , the portions were less and it tasted very mediocre.'), ('Rated 3.0', "RATED\n  Quite a happening hotspot in the middle of the city with outrageous prices on drinks which greatly reduces it's appeal to me. Go here with friends and make sure to have a drink or two before you hit it or be ready to shell out a lot more than you thought."), ('Rated 4.0', 'RATED\n  I love this place what I can say. I dont need to explain this place any further but zomato need 140 letters. So, i would like to add that I love to see people dancing under the Banyan tree feel like partying in a jungle.'), ('Rated 4.0', "RATED\n  Pebble,\nHeard a lot about this place and been here on sat night, nice and decent forest lounge/pub. Drinks and food are very expensive. but, after u enjoy the dj ul forget every rupee spent, people are crazy here and they dance like anything here, it's a nice place to spend your weekend.\nAbout food baby corn Manchurian is good and pepper chicken is ok, but up end up eating only very few items with coupons given to u."), ('Rated 1.0', "RATED\n  The standards have gone down drastically..... No dance floor for STAGS... Sad to know that nobody mentioned this while we paid for the entry.... Sadness doesn't end here... Been there before... Bt its NT the same.... Typing this review while still there.... The staff is not at all happy to see us..... The standards are highly LOW..... Oh and forgot to mention my frnd paid with a Citibank credit card and he didn't get a discount tht ZOMATO claimed we would get.... Jst finishing up with the cover charge and going somewhere to ENJOY"), ('Rated 1.0', 'RATED\n  Went to this place with a lot of high expectations.. But I think it is overpriced and neither the food nor the drinks are worth it. They served food in paper plates, drinks in plastic cups yet the prices were simply outrageous. Even if you look past the price , the portions were less and it tasted very mediocre.'), ('Rated 3.0', "RATED\n  Quite a happening hotspot in the middle of the city with outrageous prices on drinks which greatly reduces it's appeal to me. Go here with friends and make sure to have a drink or two before you hit it or be ready to shell out a lot more than you thought."), ('Rated 4.0', 'RATED\n  I love this place what I can say. I dont need to explain this place any further but zomato need 140 letters. So, i would like to add that I love to see people dancing under the Banyan tree feel like partying in a jungle.'), ('Rated 4.0', "RATED\n  Pebble,\nHeard a lot about this place and been here on sat night, nice and decent forest lounge/pub. Drinks and food are very expensive. but, after u enjoy the dj ul forget every rupee spent, people are crazy here and they dance like anything here, it's a nice place to spend your weekend.\nAbout food baby corn Manchurian is good and pepper chicken is ok, but up end up eating only very few items with coupons given to u."), ('Rated 4.0', "RATED\n  We went on a weekday so I haven't visited the place at its peaktime. Good music (although they begin with the old hiphop when I was in high school) which gets better by the hour! Food quality and service is good as well! The place has good ambience the way it is laid out with the candyshop dancefloor and under the Banyan tree open area! A Place to hangout with friends."), ('Rated 4.0', 'RATED\n  Amazing music. Tasteless food.'), ('Rated 2.5', 'RATED\n  The entry to pebbles is horrible. You can easily miss the place. No sign board , nothing. The entry is so dark you have to stop and look for it.\nThere many international djs are performing here.. Good young crowd. They are charging a good amount of money for entry . The place is average.. The seating are is not at all appealing.  Many be they should invest more in that place to make it look better. The toilets are horrible. Most of the time its leaking and never clean. always out of tissue papers... \nThe parking is horrible. Its uneven, muddy and if it rains there is  water everywhere. You end up spoiling your shoes and clothes\nFood is average.\nThey should really do something about the entry, toilets and the parking if they are gonna charge so much for the event..'), ('Rated 4.5', 'RATED\n  Awsome crowd on candy shop parties....excellent food...love this place'), ('Rated 4.0', "RATED\n  This place is IT for good Prog House music in Blore. The crowd is good, Ambience Great . Alcohol Expensive and Food not so good.\nThe theme of the place is quite evident from its name. I was a bit skeptical when i entered the place, but as i had already paid the cover charges i had to make do with it.\nEven though I am a bigger fan of Trance Music, surprisingly once when the DJ started his set and people started to come onto the dance floor, the real party began, which was much needed for me to start liking the place.\nWith the help of some great music, good visuals and some friends whom i hadn't met for a long time, this experience was great, even though the food wasn't. This place reminds you of a lot of places in Goa. Its almost got the same feel.\nFor Fans of Electronic Dance Music, especially the ones who have been for atleast 4-5 years, you've gotta go to this place."), ('Rated 4.0', "RATED\n  We went on a weekday so I haven't visited the place at its peaktime. Good music (although they begin with the old hiphop when I was in high school) which gets better by the hour! Food quality and service is good as well! The place has good ambience the way it is laid out with the candyshop dancefloor and under the Banyan tree open area! A Place to hangout with friends."), ('Rated 4.0', 'RATED\n  Amazing music. Tasteless food.'), ('Rated 2.5', 'RATED\n  The entry to pebbles is horrible. You can easily miss the place. No sign board , nothing. The entry is so dark you have to stop and look for it.\nThere many international djs are performing here.. Good young crowd. They are charging a good amount of money for entry . The place is average.. The seating are is not at all appealing.  Many be they should invest more in that place to make it look better. The toilets are horrible. Most of the time its leaking and never clean. always out of tissue papers... \nThe parking is horrible. Its uneven, muddy and if it rains there is  water everywhere. You end up spoiling your shoes and clothes\nFood is average.\nThey should really do something about the entry, toilets and the parking if they are gonna charge so much for the event..'), ('Rated 4.5', 'RATED\n  Awsome crowd on candy shop parties....excellent food...love this place'), ('Rated 4.0', "RATED\n  This place is IT for good Prog House music in Blore. The crowd is good, Ambience Great . Alcohol Expensive and Food not so good.\nThe theme of the place is quite evident from its name. I was a bit skeptical when i entered the place, but as i had already paid the cover charges i had to make do with it.\nEven though I am a bigger fan of Trance Music, surprisingly once when the DJ started his set and people started to come onto the dance floor, the real party began, which was much needed for me to start liking the place.\nWith the help of some great music, good visuals and some friends whom i hadn't met for a long time, this experience was great, even though the food wasn't. This place reminds you of a lot of places in Goa. Its almost got the same feel.\nFor Fans of Electronic Dance Music, especially the ones who have been for atleast 4-5 years, you've gotta go to this place."), ('Rated 4.0', "RATED\n  We went on a weekday so I haven't visited the place at its peaktime. Good music (although they begin with the old hiphop when I was in high school) which gets better by the hour! Food quality and service is good as well! The place has good ambience the way it is laid out with the candyshop dancefloor and under the Banyan tree open area! A Place to hangout with friends."), ('Rated 4.0', 'RATED\n  Amazing music. Tasteless food.'), ('Rated 2.5', 'RATED\n  The entry to pebbles is horrible. You can easily miss the place. No sign board , nothing. The entry is so dark you have to stop and look for it.\nThere many international djs are performing here.. Good young crowd. They are charging a good amount of money for entry . The place is average.. The seating are is not at all appealing.  Many be they should invest more in that place to make it look better. The toilets are horrible. Most of the time its leaking and never clean. always out of tissue papers... \nThe parking is horrible. Its uneven, muddy and if it rains there is  water everywhere. You end up spoiling your shoes and clothes\nFood is average.\nThey should really do something about the entry, toilets and the parking if they are gonna charge so much for the event..'), ('Rated 4.5', 'RATED\n  Awsome crowd on candy shop parties....excellent food...love this place'), ('Rated 4.0', "RATED\n  This place is IT for good Prog House music in Blore. The crowd is good, Ambience Great . Alcohol Expensive and Food not so good.\nThe theme of the place is quite evident from its name. I was a bit skeptical when i entered the place, but as i had already paid the cover charges i had to make do with it.\nEven though I am a bigger fan of Trance Music, surprisingly once when the DJ started his set and people started to come onto the dance floor, the real party began, which was much needed for me to start liking the place.\nWith the help of some great music, good visuals and some friends whom i hadn't met for a long time, this experience was great, even though the food wasn't. This place reminds you of a lot of places in Goa. Its almost got the same feel.\nFor Fans of Electronic Dance Music, especially the ones who have been for atleast 4-5 years, you've gotta go to this place."), ('Rated 4.0', "RATED\n  We went on a weekday so I haven't visited the place at its peaktime. Good music (although they begin with the old hiphop when I was in high school) which gets better by the hour! Food quality and service is good as well! The place has good ambience the way it is laid out with the candyshop dancefloor and under the Banyan tree open area! A Place to hangout with friends."), ('Rated 4.0', 'RATED\n  Amazing music. Tasteless food.'), ('Rated 2.5', 'RATED\n  The entry to pebbles is horrible. You can easily miss the place. No sign board , nothing. The entry is so dark you have to stop and look for it.\nThere many international djs are performing here.. Good young crowd. They are charging a good amount of money for entry . The place is average.. The seating are is not at all appealing.  Many be they should invest more in that place to make it look better. The toilets are horrible. Most of the time its leaking and never clean. always out of tissue papers... \nThe parking is horrible. Its uneven, muddy and if it rains there is  water everywhere. You end up spoiling your shoes and clothes\nFood is average.\nThey should really do something about the entry, toilets and the parking if they are gonna charge so much for the event..'), ('Rated 4.5', 'RATED\n  Awsome crowd on candy shop parties....excellent food...love this place'), ('Rated 4.0', "RATED\n  This place is IT for good Prog House music in Blore. The crowd is good, Ambience Great . Alcohol Expensive and Food not so good.\nThe theme of the place is quite evident from its name. I was a bit skeptical when i entered the place, but as i had already paid the cover charges i had to make do with it.\nEven though I am a bigger fan of Trance Music, surprisingly once when the DJ started his set and people started to come onto the dance floor, the real party began, which was much needed for me to start liking the place.\nWith the help of some great music, good visuals and some friends whom i hadn't met for a long time, this experience was great, even though the food wasn't. This place reminds you of a lot of places in Goa. Its almost got the same feel.\nFor Fans of Electronic Dance Music, especially the ones who have been for atleast 4-5 years, you've gotta go to this place."), ('Rated 4.0', 'RATED\n  One of the few places in Bangalore which plays excellent House/Trans music, and have ample space to move your feet and hip. Over the weekend, it is usually full of energetic young people, feels like you can dance all night!\n\nFood wise it is okay, drinks are also ok. Nothing great. But the jungle feel (yeah it is a jungle lounge), dancing below a tree, and good music, makes this place an amazing one.'), ('Rated 1.0', 'RATED\n  hi....i m from delhi....recently came to bangalore...my friends told night life here in bangalore is awesome...but unfortunately i didnt find it..this is the worst place i have ever been in a pub or disco.......pebbles...the croud is not so good...expensive liquor....worst music....its like people just jumping..on dhol...there is no bollywood or hollywood music...jaz or something to dance on....if u love to dance again this is the worst place i have ever visited....very bad experience....will never visit again...'), ('Rated 3.5', "RATED\n  We went there after our graduation. We were quite a big group ! The place is cramped according to me :-/ The board isn't even outside. So if you are somewhere outside Palace grounds searching for board reading Pebbles, U will be in for a shock :P Now coming to music, it was good !! We did have fun ! Crazy dancing :D If I am not wrong, we had Bollywood night the evening we went. Food is slightly expensive."), ('Rated 4.0', 'RATED\n  The best place on Saturdays ! Amazing crowd! But sometime becomes too densed! Muzic nd dj rocks !!'), ('Rated 3.0', 'RATED\n  Plenty of open space around. Simple dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor nothing trendy. This place was the best long back, but now itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok (sorry thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s my thought). They have International DJÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s performing here most of the times. The usual bar scene, nothing great. The food was again good sometime back but now itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok. This place is ideal for those who want a glitzy night out. It features some of the best music in town. There are live music, rollicking atmosphere. All these will satiate healthy appetites for hearty meals and good pleasure time. I like this place for the music and because itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s an open place.'), ('Rated 4.0', 'RATED\n  One of the few places in Bangalore which plays excellent House/Trans music, and have ample space to move your feet and hip. Over the weekend, it is usually full of energetic young people, feels like you can dance all night!\n\nFood wise it is okay, drinks are also ok. Nothing great. But the jungle feel (yeah it is a jungle lounge), dancing below a tree, and good music, makes this place an amazing one.'), ('Rated 1.0', 'RATED\n  hi....i m from delhi....recently came to bangalore...my friends told night life here in bangalore is awesome...but unfortunately i didnt find it..this is the worst place i have ever been in a pub or disco.......pebbles...the croud is not so good...expensive liquor....worst music....its like people just jumping..on dhol...there is no bollywood or hollywood music...jaz or something to dance on....if u love to dance again this is the worst place i have ever visited....very bad experience....will never visit again...'), ('Rated 3.5', "RATED\n  We went there after our graduation. We were quite a big group ! The place is cramped according to me :-/ The board isn't even outside. So if you are somewhere outside Palace grounds searching for board reading Pebbles, U will be in for a shock :P Now coming to music, it was good !! We did have fun ! Crazy dancing :D If I am not wrong, we had Bollywood night the evening we went. Food is slightly expensive."), ('Rated 4.0', 'RATED\n  The best place on Saturdays ! Amazing crowd! But sometime becomes too densed! Muzic nd dj rocks !!'), ('Rated 3.0', 'RATED\n  Plenty of open space around. Simple dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor nothing trendy. This place was the best long back, but now itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok (sorry thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s my thought). They have International DJÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s performing here most of the times. The usual bar scene, nothing great. The food was again good sometime back but now itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok. This place is ideal for those who want a glitzy night out. It features some of the best music in town. There are live music, rollicking atmosphere. All these will satiate healthy appetites for hearty meals and good pleasure time. I like this place for the music and because itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s an open place.'), ('Rated 4.0', 'RATED\n  One of the few places in Bangalore which plays excellent House/Trans music, and have ample space to move your feet and hip. Over the weekend, it is usually full of energetic young people, feels like you can dance all night!\n\nFood wise it is okay, drinks are also ok. Nothing great. But the jungle feel (yeah it is a jungle lounge), dancing below a tree, and good music, makes this place an amazing one.'), ('Rated 1.0', 'RATED\n  hi....i m from delhi....recently came to bangalore...my friends told night life here in bangalore is awesome...but unfortunately i didnt find it..this is the worst place i have ever been in a pub or disco.......pebbles...the croud is not so good...expensive liquor....worst music....its like people just jumping..on dhol...there is no bollywood or hollywood music...jaz or something to dance on....if u love to dance again this is the worst place i have ever visited....very bad experience....will never visit again...'), ('Rated 3.5', "RATED\n  We went there after our graduation. We were quite a big group ! The place is cramped according to me :-/ The board isn't even outside. So if you are somewhere outside Palace grounds searching for board reading Pebbles, U will be in for a shock :P Now coming to music, it was good !! We did have fun ! Crazy dancing :D If I am not wrong, we had Bollywood night the evening we went. Food is slightly expensive."), ('Rated 4.0', 'RATED\n  The best place on Saturdays ! Amazing crowd! But sometime becomes too densed! Muzic nd dj rocks !!'), ('Rated 3.0', 'RATED\n  Plenty of open space around. Simple dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©cor nothing trendy. This place was the best long back, but now itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok (sorry thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s my thought). They have International DJÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s performing here most of the times. The usual bar scene, nothing great. The food was again good sometime back but now itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok. This place is ideal for those who want a glitzy night out. It features some of the best music in town. There are live music, rollicking atmosphere. All these will satiate healthy appetites for hearty meals and good pleasure time. I like this place for the music and because itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s an open place.'), ('Rated 3.5', 'RATED\n  Average food but good music'), ('Rated 5.0', 'RATED\n  Awsome place...'), ('Rated 4.5', "RATED\n  Been there so many times..\nBut yesterday's experience was so great..\nMy friend and myself were playing a role of cupid at this place for my colleague, and yes we succeeded Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\n\n\nThe ambience of this jungle style made us feel like we are partying in a deserted place which makes you forget the busy lifestyle of Bangalore city...\n\nFood options are very limited and the drinks are very expensive.....\n\nI will suggest this place only if you would like the different experience then pub and club...\nCheers!!!"), ('Rated 3.5', 'RATED\n  pros==>\nsound system good,\nlive DJ mostly international DJ on Sunday,\nmusic good.\nevents good.\n\ncons==>\nfood taste and quantity very bad, very expensive food ,\nambience not good ,\nservice not good,\nlighting not good,\nSaturday Sunday most happening, other day the floor is dead\n\n\nno idea about happy hours, never went before PM'), ('Rated 3.5', 'RATED\n  Average food but good music'), ('Rated 5.0', 'RATED\n  Awsome place...'), ('Rated 4.5', "RATED\n  Been there so many times..\nBut yesterday's experience was so great..\nMy friend and myself were playing a role of cupid at this place for my colleague, and yes we succeeded Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\n\n\nThe ambience of this jungle style made us feel like we are partying in a deserted place which makes you forget the busy lifestyle of Bangalore city...\n\nFood options are very limited and the drinks are very expensive.....\n\nI will suggest this place only if you would like the different experience then pub and club...\nCheers!!!"), ('Rated 3.5', 'RATED\n  pros==>\nsound system good,\nlive DJ mostly international DJ on Sunday,\nmusic good.\nevents good.\n\ncons==>\nfood taste and quantity very bad, very expensive food ,\nambience not good ,\nservice not good,\nlighting not good,\nSaturday Sunday most happening, other day the floor is dead\n\n\nno idea about happy hours, never went before PM'), ('Rated 3.5', 'RATED\n  Average food but good music'), ('Rated 5.0', 'RATED\n  Awsome place...'), ('Rated 4.5', "RATED\n  Been there so many times..\nBut yesterday's experience was so great..\nMy friend and myself were playing a role of cupid at this place for my colleague, and yes we succeeded Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\n\n\nThe ambience of this jungle style made us feel like we are partying in a deserted place which makes you forget the busy lifestyle of Bangalore city...\n\nFood options are very limited and the drinks are very expensive.....\n\nI will suggest this place only if you would like the different experience then pub and club...\nCheers!!!"), ('Rated 3.5', 'RATED\n  pros==>\nsound system good,\nlive DJ mostly international DJ on Sunday,\nmusic good.\nevents good.\n\ncons==>\nfood taste and quantity very bad, very expensive food ,\nambience not good ,\nservice not good,\nlighting not good,\nSaturday Sunday most happening, other day the floor is dead\n\n\nno idea about happy hours, never went before PM'), ('Rated 5.0', "RATED\n  When its Tuesday ! It has to be pebbles !\n\n\nThe Jungle Lounge ! I can bet once in you would love to come here again! Well all i can say is i am addicted to Pebbles !\n\nThe Best Place in Bangalore to energize yourself !\n\nThe whole gang is super friendly and you'll feel ur home baby ! :D"), ('Rated 3.5', 'RATED\n  Went there on Holi .. and the party made it Happy Holi..\nAwesome dj\nawesome music\ngreat crowd\nthough other services were bit sluggish, beer was not that chilled which can be.expected looking at.the rish there..\noverall experience was good :)'), ('Rated 3.5', "RATED\n  I usually don't go to this side of town, but I'm glad I did. I found Pebble here. My cousins and I needed to let our hair down for the night and Pebble was the best option we found near Palace Grounds. It was like partying in the middle of a jungle, with the trees and forest like ambiance. They have some of the best DJs play the best music there which makes it an even better night spot to hang out. The energy is always high and buzzing with a great vibe. The crowd is really good and made my time there even more enjoyable. We had a few beers and some finger food which was surprisingly delicious. All in all, a great place to party and have a great time with friends."), ('Rated 3.5', 'RATED\n  I loved pebbles. The feel and ambiance that they provide in the city is unbeatable. There is something about the vibe there that just makes me want to keep going back. If sipping your drink sitting on boulders under huge trees is your thing, pebbles might be your place. I am a person who follow electronic music quite religiously and a place like this is a blessing for me. They have good artists coming down to perform. Parking is not an issue, or atleast I havent had a problem yet. Go there for the ambiance and the music. Not for the food.'), ('Rated 4.0', 'RATED\n  The place starts with the jungle you see - cause you want to be wild when dancing.\nMusic here will turn you on, for the DJs here are not ones you find everywhere. A hub for EDM (Electronic dance Music) in Bangalore I believe. The ambiance is perfect with dim light for places to eat and bring where to dance. International DJs like Marina is the USP.\nYou should not be shocked to find this place a little expensive, for that can be negotiated when you know you have to drink and dance. The fool is solala, expect not much out of it.\nSomething that might charm is the Psychedelic party here.\nAmbiance - 4/5\nFood - 3/5\nService - 3/5'), ('Rated 5.0', "RATED\n  When its Tuesday ! It has to be pebbles !\n\n\nThe Jungle Lounge ! I can bet once in you would love to come here again! Well all i can say is i am addicted to Pebbles !\n\nThe Best Place in Bangalore to energize yourself !\n\nThe whole gang is super friendly and you'll feel ur home baby ! :D"), ('Rated 3.5', 'RATED\n  Went there on Holi .. and the party made it Happy Holi..\nAwesome dj\nawesome music\ngreat crowd\nthough other services were bit sluggish, beer was not that chilled which can be.expected looking at.the rish there..\noverall experience was good :)'), ('Rated 3.5', "RATED\n  I usually don't go to this side of town, but I'm glad I did. I found Pebble here. My cousins and I needed to let our hair down for the night and Pebble was the best option we found near Palace Grounds. It was like partying in the middle of a jungle, with the trees and forest like ambiance. They have some of the best DJs play the best music there which makes it an even better night spot to hang out. The energy is always high and buzzing with a great vibe. The crowd is really good and made my time there even more enjoyable. We had a few beers and some finger food which was surprisingly delicious. All in all, a great place to party and have a great time with friends."), ('Rated 3.5', 'RATED\n  I loved pebbles. The feel and ambiance that they provide in the city is unbeatable. There is something about the vibe there that just makes me want to keep going back. If sipping your drink sitting on boulders under huge trees is your thing, pebbles might be your place. I am a person who follow electronic music quite religiously and a place like this is a blessing for me. They have good artists coming down to perform. Parking is not an issue, or atleast I havent had a problem yet. Go there for the ambiance and the music. Not for the food.'), ('Rated 4.0', 'RATED\n  The place starts with the jungle you see - cause you want to be wild when dancing.\nMusic here will turn you on, for the DJs here are not ones you find everywhere. A hub for EDM (Electronic dance Music) in Bangalore I believe. The ambiance is perfect with dim light for places to eat and bring where to dance. International DJs like Marina is the USP.\nYou should not be shocked to find this place a little expensive, for that can be negotiated when you know you have to drink and dance. The fool is solala, expect not much out of it.\nSomething that might charm is the Psychedelic party here.\nAmbiance - 4/5\nFood - 3/5\nService - 3/5'), ('Rated 5.0', "RATED\n  When its Tuesday ! It has to be pebbles !\n\n\nThe Jungle Lounge ! I can bet once in you would love to come here again! Well all i can say is i am addicted to Pebbles !\n\nThe Best Place in Bangalore to energize yourself !\n\nThe whole gang is super friendly and you'll feel ur home baby ! :D"), ('Rated 3.5', 'RATED\n  Went there on Holi .. and the party made it Happy Holi..\nAwesome dj\nawesome music\ngreat crowd\nthough other services were bit sluggish, beer was not that chilled which can be.expected looking at.the rish there..\noverall experience was good :)'), ('Rated 3.5', "RATED\n  I usually don't go to this side of town, but I'm glad I did. I found Pebble here. My cousins and I needed to let our hair down for the night and Pebble was the best option we found near Palace Grounds. It was like partying in the middle of a jungle, with the trees and forest like ambiance. They have some of the best DJs play the best music there which makes it an even better night spot to hang out. The energy is always high and buzzing with a great vibe. The crowd is really good and made my time there even more enjoyable. We had a few beers and some finger food which was surprisingly delicious. All in all, a great place to party and have a great time with friends."), ('Rated 3.5', 'RATED\n  I loved pebbles. The feel and ambiance that they provide in the city is unbeatable. There is something about the vibe there that just makes me want to keep going back. If sipping your drink sitting on boulders under huge trees is your thing, pebbles might be your place. I am a person who follow electronic music quite religiously and a place like this is a blessing for me. They have good artists coming down to perform. Parking is not an issue, or atleast I havent had a problem yet. Go there for the ambiance and the music. Not for the food.'), ('Rated 4.0', 'RATED\n  The place starts with the jungle you see - cause you want to be wild when dancing.\nMusic here will turn you on, for the DJs here are not ones you find everywhere. A hub for EDM (Electronic dance Music) in Bangalore I believe. The ambiance is perfect with dim light for places to eat and bring where to dance. International DJs like Marina is the USP.\nYou should not be shocked to find this place a little expensive, for that can be negotiated when you know you have to drink and dance. The fool is solala, expect not much out of it.\nSomething that might charm is the Psychedelic party here.\nAmbiance - 4/5\nFood - 3/5\nService - 3/5'), ('Rated 5.0', "RATED\n  When its Tuesday ! It has to be pebbles !\n\n\nThe Jungle Lounge ! I can bet once in you would love to come here again! Well all i can say is i am addicted to Pebbles !\n\nThe Best Place in Bangalore to energize yourself !\n\nThe whole gang is super friendly and you'll feel ur home baby ! :D"), ('Rated 3.5', 'RATED\n  Went there on Holi .. and the party made it Happy Holi..\nAwesome dj\nawesome music\ngreat crowd\nthough other services were bit sluggish, beer was not that chilled which can be.expected looking at.the rish there..\noverall experience was good :)'), ('Rated 3.5', "RATED\n  I usually don't go to this side of town, but I'm glad I did. I found Pebble here. My cousins and I needed to let our hair down for the night and Pebble was the best option we found near Palace Grounds. It was like partying in the middle of a jungle, with the trees and forest like ambiance. They have some of the best DJs play the best music there which makes it an even better night spot to hang out. The energy is always high and buzzing with a great vibe. The crowd is really good and made my time there even more enjoyable. We had a few beers and some finger food which was surprisingly delicious. All in all, a great place to party and have a great time with friends."), ('Rated 3.5', 'RATED\n  I loved pebbles. The feel and ambiance that they provide in the city is unbeatable. There is something about the vibe there that just makes me want to keep going back. If sipping your drink sitting on boulders under huge trees is your thing, pebbles might be your place. I am a person who follow electronic music quite religiously and a place like this is a blessing for me. They have good artists coming down to perform. Parking is not an issue, or atleast I havent had a problem yet. Go there for the ambiance and the music. Not for the food.'), ('Rated 4.0', 'RATED\n  The place starts with the jungle you see - cause you want to be wild when dancing.\nMusic here will turn you on, for the DJs here are not ones you find everywhere. A hub for EDM (Electronic dance Music) in Bangalore I believe. The ambiance is perfect with dim light for places to eat and bring where to dance. International DJs like Marina is the USP.\nYou should not be shocked to find this place a little expensive, for that can be negotiated when you know you have to drink and dance. The fool is solala, expect not much out of it.\nSomething that might charm is the Psychedelic party here.\nAmbiance - 4/5\nFood - 3/5\nService - 3/5'), ('Rated 1.5', "RATED\n  Had quite a bad experience, the bouncers were exceptionally rude. There is no stamp system, once in there is no leaving the place. The alcohol is very pricy, the music is repetitive and the whole place is a rip off. This is one of the worst clubs you can visit, so please don't ruin your weekend at such a dump!!"), ('Rated 3.5', "RATED\n  A nice getaway to unwind n let loose. But it's certainly lost its charm over the years. Used to attend all the MOS parties here. Love the energy and crowd. Food aunt that great. Just go there to relax, have a few drinks that's about it!!"), ('Rated 5.0', 'RATED\n  Pebble is perfect getaway from all the chaos of the city. The place is totally hippie and reminds me of Goa and the parties there.\n\nSunday is the perfect night to go crazy in Pebble with their Psy parties happening there. The drinks are limited here to only a few brands but its definitely enough. The price is pretty normal and not a hole in the pocket. The staff are really friendly and serve drinks pretty quick as well.\n\nThe cocktails are decent and the food is pretty nice. Will always keep going back.'), ('Rated 1.5', "RATED\n  Had quite a bad experience, the bouncers were exceptionally rude. There is no stamp system, once in there is no leaving the place. The alcohol is very pricy, the music is repetitive and the whole place is a rip off. This is one of the worst clubs you can visit, so please don't ruin your weekend at such a dump!!"), ('Rated 3.5', "RATED\n  A nice getaway to unwind n let loose. But it's certainly lost its charm over the years. Used to attend all the MOS parties here. Love the energy and crowd. Food aunt that great. Just go there to relax, have a few drinks that's about it!!"), ('Rated 5.0', 'RATED\n  Pebble is perfect getaway from all the chaos of the city. The place is totally hippie and reminds me of Goa and the parties there.\n\nSunday is the perfect night to go crazy in Pebble with their Psy parties happening there. The drinks are limited here to only a few brands but its definitely enough. The price is pretty normal and not a hole in the pocket. The staff are really friendly and serve drinks pretty quick as well.\n\nThe cocktails are decent and the food is pretty nice. Will always keep going back.'), ('Rated 1.5', "RATED\n  Had quite a bad experience, the bouncers were exceptionally rude. There is no stamp system, once in there is no leaving the place. The alcohol is very pricy, the music is repetitive and the whole place is a rip off. This is one of the worst clubs you can visit, so please don't ruin your weekend at such a dump!!"), ('Rated 3.5', "RATED\n  A nice getaway to unwind n let loose. But it's certainly lost its charm over the years. Used to attend all the MOS parties here. Love the energy and crowd. Food aunt that great. Just go there to relax, have a few drinks that's about it!!"), ('Rated 5.0', 'RATED\n  Pebble is perfect getaway from all the chaos of the city. The place is totally hippie and reminds me of Goa and the parties there.\n\nSunday is the perfect night to go crazy in Pebble with their Psy parties happening there. The drinks are limited here to only a few brands but its definitely enough. The price is pretty normal and not a hole in the pocket. The staff are really friendly and serve drinks pretty quick as well.\n\nThe cocktails are decent and the food is pretty nice. Will always keep going back.'), ('Rated 3.0', 'RATED\n  We went there on Saturday evening expecting a lot of music and fun to lighten up our weekend. But I was completely shattered by the experience.The place is completely over priced for what it offers. The outdoor is huge so if i am a little far from the DJ the music is gone which defeats the entire purpose of clubbing which is to let yourself lose and enjoy the music. It is shabby outdoor place with mosquito repellent fired under all the tables. I am not a huge fan of House music so i didnt enjoy dancing also.'), ('Rated 1.0', 'RATED\n  Worst place.\n\nFirstly incorrect information regarding beer and food. Highly Overpriced. I mean who pays 250 bucks for a pint of beer to be at dark, shabby, mosquito infested,repellent coil choking smoke, unwelcoming staff with two pages menu card. DJ plays music for himself not for guests.\n\nHid away in the middle of nowhere in palace grounds. No illuminated pathways. In Rainy season never ever dare to visit, as highly intellectually designed muddy road is definetly going to spoil your shoes, dress and ofcourse mood.'), ('Rated 2.0', 'RATED\n  This place is a nice place to party, but frankly speaking way the food is mediocre and bit pricey!! Not recommended for food but recommended if you want to shake a leg on the weekends.'), ('Rated 1.0', "RATED\n  Went with high expectations to celebrate New Years after having read all these wonderful comments and also having heard about it from so many people. But I'm sure that me and at least a hundred other people who came here would swear that we will NEVER come back here, After having waited for more than an hour, the gates were shut. When we asked for people from the management, the crew said that there was no one from the management stayed. There was almost a stampede at the entrance. I had paid 14,000 for the passes and was denied access. I want my money back!!!!"), ('Rated 1.0', "RATED\n  An otherwise nice place, hosted the worst 2013 new year party I have ever been to.\nTotally overcrowded, the place was a dirty filthy mess. Complaints fell on deaf ears to who ever was organizing the show. The complete apathy of the organizers was infuriating. They wouldn't even reimburse our cover charges and made lame excuses that the counter is closed. Even entering the premises involved pushing, shoving and jostling. A Horrible party. Not sure if I would ever wanna go there again."), ('Rated 3.0', 'RATED\n  We went there on Saturday evening expecting a lot of music and fun to lighten up our weekend. But I was completely shattered by the experience.The place is completely over priced for what it offers. The outdoor is huge so if i am a little far from the DJ the music is gone which defeats the entire purpose of clubbing which is to let yourself lose and enjoy the music. It is shabby outdoor place with mosquito repellent fired under all the tables. I am not a huge fan of House music so i didnt enjoy dancing also.'), ('Rated 1.0', 'RATED\n  Worst place.\n\nFirstly incorrect information regarding beer and food. Highly Overpriced. I mean who pays 250 bucks for a pint of beer to be at dark, shabby, mosquito infested,repellent coil choking smoke, unwelcoming staff with two pages menu card. DJ plays music for himself not for guests.\n\nHid away in the middle of nowhere in palace grounds. No illuminated pathways. In Rainy season never ever dare to visit, as highly intellectually designed muddy road is definetly going to spoil your shoes, dress and ofcourse mood.'), ('Rated 2.0', 'RATED\n  This place is a nice place to party, but frankly speaking way the food is mediocre and bit pricey!! Not recommended for food but recommended if you want to shake a leg on the weekends.'), ('Rated 1.0', "RATED\n  Went with high expectations to celebrate New Years after having read all these wonderful comments and also having heard about it from so many people. But I'm sure that me and at least a hundred other people who came here would swear that we will NEVER come back here, After having waited for more than an hour, the gates were shut. When we asked for people from the management, the crew said that there was no one from the management stayed. There was almost a stampede at the entrance. I had paid 14,000 for the passes and was denied access. I want my money back!!!!"), ('Rated 1.0', "RATED\n  An otherwise nice place, hosted the worst 2013 new year party I have ever been to.\nTotally overcrowded, the place was a dirty filthy mess. Complaints fell on deaf ears to who ever was organizing the show. The complete apathy of the organizers was infuriating. They wouldn't even reimburse our cover charges and made lame excuses that the counter is closed. Even entering the premises involved pushing, shoving and jostling. A Horrible party. Not sure if I would ever wanna go there again."), ('Rated 3.0', 'RATED\n  We went there on Saturday evening expecting a lot of music and fun to lighten up our weekend. But I was completely shattered by the experience.The place is completely over priced for what it offers. The outdoor is huge so if i am a little far from the DJ the music is gone which defeats the entire purpose of clubbing which is to let yourself lose and enjoy the music. It is shabby outdoor place with mosquito repellent fired under all the tables. I am not a huge fan of House music so i didnt enjoy dancing also.'), ('Rated 1.0', 'RATED\n  Worst place.\n\nFirstly incorrect information regarding beer and food. Highly Overpriced. I mean who pays 250 bucks for a pint of beer to be at dark, shabby, mosquito infested,repellent coil choking smoke, unwelcoming staff with two pages menu card. DJ plays music for himself not for guests.\n\nHid away in the middle of nowhere in palace grounds. No illuminated pathways. In Rainy season never ever dare to visit, as highly intellectually designed muddy road is definetly going to spoil your shoes, dress and ofcourse mood.'), ('Rated 2.0', 'RATED\n  This place is a nice place to party, but frankly speaking way the food is mediocre and bit pricey!! Not recommended for food but recommended if you want to shake a leg on the weekends.'), ('Rated 1.0', "RATED\n  Went with high expectations to celebrate New Years after having read all these wonderful comments and also having heard about it from so many people. But I'm sure that me and at least a hundred other people who came here would swear that we will NEVER come back here, After having waited for more than an hour, the gates were shut. When we asked for people from the management, the crew said that there was no one from the management stayed. There was almost a stampede at the entrance. I had paid 14,000 for the passes and was denied access. I want my money back!!!!"), ('Rated 1.0', "RATED\n  An otherwise nice place, hosted the worst 2013 new year party I have ever been to.\nTotally overcrowded, the place was a dirty filthy mess. Complaints fell on deaf ears to who ever was organizing the show. The complete apathy of the organizers was infuriating. They wouldn't even reimburse our cover charges and made lame excuses that the counter is closed. Even entering the premises involved pushing, shoving and jostling. A Horrible party. Not sure if I would ever wanna go there again."), ('Rated 5.0', 'RATED\n  Pebbles takes me back to the era of Flintstones because it reminds me the name of a character from that cartoon. Jokes apart. This place is a happening place in town. A must hangout when you are with some good company and near Palace Grounds. They have rocking tracks playing. It can ensure you to wake up when you are here. The food and drinks here are great here.\n\nThe cocktails are superb here i like the Virgin Mojito and Screwdriver, in food stick to chinese starters or tandoori items as they are way too good at this place. This place will be full on weekends for sure. Its a happening place for the most of the students of Ramaih College so you would end up finding a lot of students here. Pocket friendly when you order right things here. The decor of this place gives me a feel of a costal beach party shack so I like to hangout here.\n\nRecommended for sure if you wanna get fresh sometime.'), ('Rated 3.0', 'RATED\n  A place very few can find. Hidden midst the jungle of Palace Grounds, this place can be called mini goa without the beach in Bangalore. A typical trance and dance place, this place is THE place to dance and let lose in Bangalore. The entry feels a little steep, especially when theres no cover charge just entry. But the place is huge and lively. I really loved this place for the fact that there is place to dance without restrictions, which is hard to find in Bangalore. A must visit for any Trance and Dance lover.'), ('Rated 3.0', 'RATED\n  Had been to Pebbles a month back. The place is good. And i would love to go there again.'), ('Rated 5.0', 'RATED\n  This place rocks. Set in a rocky jungle theme, this night club has the setup for excellent music, flowing booze and the lush greens with rocky outdoors set the mood just right for a high class camping type party.\nThe big banyan tree in the centre sprawls over a major area where you can laze around or dance your toes off; suit yourself. They even have a rustic setup of disco lights to give you a dance floor feel.\nAll in all, a perfect clubbing place not so far from the heart of Bangalore.\nIf you are driving from MG Road, you will however need to go all the way to Mekhri Circle and come back till the Hero showroom (opp. entry).\nCheers!'), ('Rated 4.0', 'RATED\n  Nothing on the ambience side but Music on Saturday nights.. superb.. !'), ('Rated 5.0', 'RATED\n  Pebbles takes me back to the era of Flintstones because it reminds me the name of a character from that cartoon. Jokes apart. This place is a happening place in town. A must hangout when you are with some good company and near Palace Grounds. They have rocking tracks playing. It can ensure you to wake up when you are here. The food and drinks here are great here.\n\nThe cocktails are superb here i like the Virgin Mojito and Screwdriver, in food stick to chinese starters or tandoori items as they are way too good at this place. This place will be full on weekends for sure. Its a happening place for the most of the students of Ramaih College so you would end up finding a lot of students here. Pocket friendly when you order right things here. The decor of this place gives me a feel of a costal beach party shack so I like to hangout here.\n\nRecommended for sure if you wanna get fresh sometime.'), ('Rated 3.0', 'RATED\n  A place very few can find. Hidden midst the jungle of Palace Grounds, this place can be called mini goa without the beach in Bangalore. A typical trance and dance place, this place is THE place to dance and let lose in Bangalore. The entry feels a little steep, especially when theres no cover charge just entry. But the place is huge and lively. I really loved this place for the fact that there is place to dance without restrictions, which is hard to find in Bangalore. A must visit for any Trance and Dance lover.'), ('Rated 3.0', 'RATED\n  Had been to Pebbles a month back. The place is good. And i would love to go there again.'), ('Rated 5.0', 'RATED\n  This place rocks. Set in a rocky jungle theme, this night club has the setup for excellent music, flowing booze and the lush greens with rocky outdoors set the mood just right for a high class camping type party.\nThe big banyan tree in the centre sprawls over a major area where you can laze around or dance your toes off; suit yourself. They even have a rustic setup of disco lights to give you a dance floor feel.\nAll in all, a perfect clubbing place not so far from the heart of Bangalore.\nIf you are driving from MG Road, you will however need to go all the way to Mekhri Circle and come back till the Hero showroom (opp. entry).\nCheers!'), ('Rated 4.0', 'RATED\n  Nothing on the ambience side but Music on Saturday nights.. superb.. !'), ('Rated 5.0', 'RATED\n  Pebbles takes me back to the era of Flintstones because it reminds me the name of a character from that cartoon. Jokes apart. This place is a happening place in town. A must hangout when you are with some good company and near Palace Grounds. They have rocking tracks playing. It can ensure you to wake up when you are here. The food and drinks here are great here.\n\nThe cocktails are superb here i like the Virgin Mojito and Screwdriver, in food stick to chinese starters or tandoori items as they are way too good at this place. This place will be full on weekends for sure. Its a happening place for the most of the students of Ramaih College so you would end up finding a lot of students here. Pocket friendly when you order right things here. The decor of this place gives me a feel of a costal beach party shack so I like to hangout here.\n\nRecommended for sure if you wanna get fresh sometime.'), ('Rated 3.0', 'RATED\n  A place very few can find. Hidden midst the jungle of Palace Grounds, this place can be called mini goa without the beach in Bangalore. A typical trance and dance place, this place is THE place to dance and let lose in Bangalore. The entry feels a little steep, especially when theres no cover charge just entry. But the place is huge and lively. I really loved this place for the fact that there is place to dance without restrictions, which is hard to find in Bangalore. A must visit for any Trance and Dance lover.'), ('Rated 3.0', 'RATED\n  Had been to Pebbles a month back. The place is good. And i would love to go there again.'), ('Rated 5.0', 'RATED\n  This place rocks. Set in a rocky jungle theme, this night club has the setup for excellent music, flowing booze and the lush greens with rocky outdoors set the mood just right for a high class camping type party.\nThe big banyan tree in the centre sprawls over a major area where you can laze around or dance your toes off; suit yourself. They even have a rustic setup of disco lights to give you a dance floor feel.\nAll in all, a perfect clubbing place not so far from the heart of Bangalore.\nIf you are driving from MG Road, you will however need to go all the way to Mekhri Circle and come back till the Hero showroom (opp. entry).\nCheers!'), ('Rated 4.0', 'RATED\n  Nothing on the ambience side but Music on Saturday nights.. superb.. !'), ('Rated 3.0', "RATED\n  On more than four occasions i have been to pebbles and i quite like it, its quite unassuming and relaxed, it has a huge seating area that is divided a little abruptly, its a bit too dimly lit, seating are not that comfortable esp the ones on the stone, they don have a back rest that gets annoying .The waiters are not very attentive which im not sure is good or bad, i somehow prefer them not bothering me much until i ask for their help. I still seem to like this places , one reason it being very close to my home and the other that the crowd is sometimes good (NOT ALWAYS) . Food is average but they make very good cocktails. The bartender really has got his portions rite since i really liked the cocktails, unlike most lounges where the cocktails are diluted to an extent that you don't realize what you're drinking, here they are made good, i like the shooters that they gave as a complimentary. Its a bit expensive but im sure to go in here again"), ('Rated 4.0', 'RATED\n  Tucked away in Palace grounds, is this quaint little place called pebbles. Infact there is a high possibility that you will drive past this place and yet miss it completely. There is no signage to this place ! And yet the word of mouth travels far and wide, which draws a cross section of people to this place.\nA small drive way leads you to this place , and you will still be kept guessing to the where abouts of this place. essentially an old bunglow, converted into a pub, all the walls are pulled down, to create interesting nooks of seating pockets.Dim lighting and the dense foliage of palace grounds adds to the USP of this place. Once inside , it is hard to belive that you are sitting in the heart of the city !\n\nPebbles is completely buzzing on Saturday nights, with a nominal cover.The house music is commendable.\n\nThe drinks and the bites are priced at par with any other pub. Their claim to fame, is definately the location and the ambience !'), ('Rated 5.0', 'RATED\n  Amazing ambience and kick ass music . Especially the minimal nights !')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
Since the love of my life wanted to taste the mango cider, we went here on a date. She ordered mango cider n I ordered witbier. Both were great. Mango cider tasted like carbonated slice/frooti. It was good. The witbier in this brewery is one of the best I tasted in Bangalore. It's very smooth and not bitter at all. Coming to food, it was average. We ordered this chicken wrapped in banana leaf and chicken tikka pizza. Both weren't tasty. Pizza was okay okay, but the chicken dish was just bland. Need to improve on the food!"), ('Rated 5.0', 'RATED\n  What a great place this is!! Food, ambience, service, prices everything was just perfect. ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s an option of 3 floors to choose from, including roof top. Mango cider beer was superb with just the right amount of sweet. Tried 6-7 food items and all of them were flawless.\nMust try : Spicy cheese corn sticks and Murg malai tikka'), ('Rated 4.0', "RATED\n  Full points for the brew - quality, potency and freshness. They can definitely expand on their food menu options. It's quite limited at the moment."), ('Rated 3.0', "RATED\n  When it comes to ambience it's fine ,but food is not that great . Dessert Panacota instead of orange , strawberry would have made the taste better .starters were good.doesn't recommend chicken tikka pizza though ."), ('Rated 4.0', 'RATED\n  Turned out to be the first brewery I went to in Bangalore and man it was worth it. The waiting staff is quick and prompt but it would be epic if they engage with the patrons on the type of brews. The food was good and the portion size decent. The music at the place could have been better though.'), ('Rated 4.0', 'RATED\n  Heard some good reviews about this place from different channels so thought of trying it. We were a group of 11 people and had the table booked for the terrace. The place was lively with good music. The food served was flavourful and good though the portion served were very small. The portion size can be better. The music after 12 was really. Actually the best when they started playing Hindi music. Overall a good place to visit ?'), ('Rated 1.0', 'RATED\n  I visited this place with my friends after saw good reviews in zomato. This was my first visit.This place is very cool ambience. we ordered Chicken tika starter and it was okay okay. Beer ? , prawns cilantro,\nbutter naan was tasteless, service is also not up-to the mark. Staffs are not well trained in product knowledge and every time we ask something they were clue less.'), ('Rated 5.0', 'RATED\n  Awesome place, was there last Friday for dinner with office colleagues. Starting from confirmation to beer and food was awesome particularly the chicken wings ... Overall had a nice experience...'), ('Rated 5.0', 'RATED\n  In kormangala, one of the amazing places to spend time with your loved ones be it friends or family !!\n\nHuge place!\n\nThe interiors are good too. Can easily end up spending 3-4 hours here.\n\nFood is damn tastyy.. We tried quite a few dishes and most of them were something we really enjoyed.\n\nGood food with good beer - life is bliss!'), ('Rated 4.0', "RATED\n  Have been to this place some days back.\nIt's not such a huge place.\nQuite good music here is Okay Okay.\nWe wanted to sit on 1st floor but unfortunately it's wasn't running.\nHad a good time.\nGood part they accept ZOMATO on drinks.\nNot much to say Prices are a bit higher than it should be for such a basic peanut masala which wasn't worth of the Quantity they've served\nOverall it's once visit sort of place."), ('Rated 4.0', 'RATED\n  The name is Bond, Brooks and Bonds.\n\nA new microbrewery, one where we did not sample the beer. Mainly because Zomato gold had a 2+2 and everyone wanted LIIT - served in test tube like vessels ala the Social chain of pubs.\n\nPleasantly surprised by the food here. Items from the tandoor, and the other kebabs are really good. In particular, the Shaami Kebab is exceptional. Chhole Kulche and some of the veg starters are nice as well, though vegetarians on the table unanimouslt agreed that a bit more of spice would do these good.\n\nAmbiance: 4/5\nService: 4/5\nFood: 4/5\nValue for Money: 4/5'), ('Rated 5.0', 'RATED\n  Has to be one of the busiest bars in Koramangala. Located on the road to the Sony Signal it is a dim set atmosphere will lot of crazy tunes to dance on.\n\nComing to the food it has great flavour and service time is also great.\n\nMakes it a smoother deal with the 2+2 on zomato gold and the drinks do not dissapoint either!\n\nMust visit , weekends might be crowded but do try a weekday for an amazing experience'), ('Rated 1.0', "RATED\n  I have visited this place on Thursday night, I will not recommend this place to anyone.\nThe food was tasteless, Service is ok. I'm very disappointed with there service."), ('Rated 4.0', "RATED\n  This place is doing pretty well.Decent place. Great view from the roof top. Varied menu - the usual pub grub. Food wise..i'd give them 3.5 on 5.The food is alright, but nothing to rave about.Good cocktails...great service and overall good vibe. Throughly enjoyed their whiskey sour & bloody mary!"), ('Rated 5.0', "RATED\n  This is the first time I'm coming here with my friends.. ambience looks amazing.. with good filtered crowd..\n\nThe staff is very friendly and hospitable.\n\nThe food was fabulous and their service was really fast\n\nThe place set some amazing vibes too ..\n\nFood: 5/5\n\nService: 5/5\n\nAmbiance: 5/5"), ('Rated 4.0', 'RATED\n  The name is Bond, Brooks and Bonds.\n\nA new microbrewery, one where we did not sample the beer. Mainly because Zomato gold had a 2+2 and everyone wanted LIIT - served in test tube like vessels ala the Social chain of pubs.\n\nPleasantly surprised by the food here. Items from the tandoor, and the other kebabs are really good. In particular, the Shaami Kebab is exceptional. Chhole Kulche and some of the veg starters are nice as well, though vegetarians on the table unanimouslt agreed that a bit more of spice would do these good.\n\nAmbiance: 4/5\nService: 4/5\nFood: 4/5\nValue for Money: 4/5'), ('Rated 5.0', 'RATED\n  Has to be one of the busiest bars in Koramangala. Located on the road to the Sony Signal it is a dim set atmosphere will lot of crazy tunes to dance on.\n\nComing to the food it has great flavour and service time is also great.\n\nMakes it a smoother deal with the 2+2 on zomato gold and the drinks do not dissapoint either!\n\nMust visit , weekends might be crowded but do try a weekday for an amazing experience'), ('Rated 1.0', "RATED\n  I have visited this place on Thursday night, I will not recommend this place to anyone.\nThe food was tasteless, Service is ok. I'm very disappointed with there service."), ('Rated 4.0', "RATED\n  This place is doing pretty well.Decent place. Great view from the roof top. Varied menu - the usual pub grub. Food wise..i'd give them 3.5 on 5.The food is alright, but nothing to rave about.Good cocktails...great service and overall good vibe. Throughly enjoyed their whiskey sour & bloody mary!"), ('Rated 5.0', "RATED\n  This is the first time I'm coming here with my friends.. ambience looks amazing.. with good filtered crowd..\n\nThe staff is very friendly and hospitable.\n\nThe food was fabulous and their service was really fast\n\nThe place set some amazing vibes too ..\n\nFood: 5/5\n\nService: 5/5\n\nAmbiance: 5/5"), ('Rated 4.0', 'RATED\n  This is located near sony signal and adds to brewery list in Koramangala. Ambience is decent. Food and service is nice. It has a open seating. Good for couples who wants to have good conversation with some brewed beer. :)'), ('Rated 5.0', "RATED\n  Awesome food and superb service. Their pasta and cheese balls we're superb. Their waiter Amrit suggested real nice dishes. Love the service ."), ('Rated 5.0', 'RATED\n  So the food was really amazing. An amazing service and the rooftop ambience was so good. Music was light.. Enough of room to talk. Definitely a great place to visit with friends on any weekend.'), ('Rated 3.0', 'RATED\n  This place is really cool, and the food is the tastiest I have tasted in a long time! The service is good and the ambience is lit. Would recommend this place.\n\nThe rooftop is a little congested, but the food makes us for the inconvenience.'), ('Rated 5.0', "RATED\n  An all time favourite I must say. The ambience on the rooftop with light music is so good. Then comes the drinks. The craft beer is something you need to order. It's so good. Their food.. I've been to pubs and cafes but my goodness.. I've rarely seen pubs serving so tasty food. It was really amazing. Would definitely pay another visit pretty soon.. +6 on the food"), ('Rated 4.0', 'RATED\n  This is located near sony signal and adds to brewery list in Koramangala. Ambience is decent. Food and service is nice. It has a open seating. Good for couples who wants to have good conversation with some brewed beer. :)'), ('Rated 5.0', "RATED\n  Awesome food and superb service. Their pasta and cheese balls we're superb. Their waiter Amrit suggested real nice dishes. Love the service ."), ('Rated 5.0', 'RATED\n  So the food was really amazing. An amazing service and the rooftop ambience was so good. Music was light.. Enough of room to talk. Definitely a great place to visit with friends on any weekend.'), ('Rated 3.0', 'RATED\n  This place is really cool, and the food is the tastiest I have tasted in a long time! The service is good and the ambience is lit. Would recommend this place.\n\nThe rooftop is a little congested, but the food makes us for the inconvenience.'), ('Rated 5.0', "RATED\n  An all time favourite I must say. The ambience on the rooftop with light music is so good. Then comes the drinks. The craft beer is something you need to order. It's so good. Their food.. I've been to pubs and cafes but my goodness.. I've rarely seen pubs serving so tasty food. It was really amazing. Would definitely pay another visit pretty soon.. +6 on the food"), ('Rated 4.0', 'RATED\n  This is located near sony signal and adds to brewery list in Koramangala. Ambience is decent. Food and service is nice. It has a open seating. Good for couples who wants to have good conversation with some brewed beer. :)'), ('Rated 5.0', "RATED\n  Awesome food and superb service. Their pasta and cheese balls we're superb. Their waiter Amrit suggested real nice dishes. Love the service ."), ('Rated 5.0', 'RATED\n  So the food was really amazing. An amazing service and the rooftop ambience was so good. Music was light.. Enough of room to talk. Definitely a great place to visit with friends on any weekend.'), ('Rated 3.0', 'RATED\n  This place is really cool, and the food is the tastiest I have tasted in a long time! The service is good and the ambience is lit. Would recommend this place.\n\nThe rooftop is a little congested, but the food makes us for the inconvenience.'), ('Rated 5.0', "RATED\n  An all time favourite I must say. The ambience on the rooftop with light music is so good. Then comes the drinks. The craft beer is something you need to order. It's so good. Their food.. I've been to pubs and cafes but my goodness.. I've rarely seen pubs serving so tasty food. It was really amazing. Would definitely pay another visit pretty soon.. +6 on the food"), ('Rated 2.0', "RATED\n  The place really doesn't justify the 4.5 rating. Beer and food were pretty good. Ambience is average. The music is insanely loud.\n\nBasics of music:\n1. Dance floor = Loud music.\n2. Place where people sit and talk = Low to Medium music.\nThey had loud music all over the place.\n\nI went here for my birthday. It was an average experience. I wouldn't really recommend this place. There are better ones in Koramangala."), ('Rated 4.0', "RATED\n  Wanted to try this place for good reviews it has got also for the wide variety of brewed beers they serve,\nvisited this place on Saturday afternoon with a friend of mine and we were not disappointed, place was already packed...\nRooftop was not open yet I guess it's because they wanted to fill up the floor below first...\nAmbience n decor is same as any other fancy pub in Bangalore nothing special.\nComing to food we ordered Onion rings, sukha mushroom and veg Nachos all of them were really good, Mushroom was excellently prepared,\nWe tried Mango Cider and Dunkleweise beer both of them were really good but Mango Cider stands out for it's taste which might make you wanna go back for this place again.?\nService was great and overall a nice experience and Zomato gold offer made it even better.. :)"), ('Rated 5.0', 'RATED\n  Great Dunkelweiss beer. The Mango Cider was something very unique and totally unexpected. The place has something different compared to other places and it hits you as soon as you get in. Great ambience. Great pizza and fries. I appreciate the quantity and quality. Very reasonable prices. One of the best rooftops I have been to. Mr. FirojÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s service was excellent.'), ('Rated 3.0', 'RATED\n  Nice place to hangout and it also takes Zomato gold which is a plus point.. food and drinks are good.. pricing is on a higher side which you can expect from a brewery in Bangalore.. But DJ was very disappointing and if your expecting a good loud Bollywood or Punjabi number you will be highly disappointed.. he plays only English music which you can also play from your phone..'), ('Rated 4.0', 'RATED\n  Visited tonight for a few drinks with some friends. The drinks and food selection menus were quite vast and offers a lot of items. We ordered one Belgian Wit and a Mango Cider. The Belgian Wit was the better choice of the two as the beer had a really good taste along with a nice citrus note background.\n\nOrdered a proration of Roasted Chilli Pork to go along with that but that didnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t meet up the expectations. Since having some really good Pork dishes around Bangalore IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d say this was a let down as the meat wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as tender and the spice wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as delicious. Anyway a chill place overall and do go and try out if you feel like! ??'), ('Rated 2.0', "RATED\n  The place really doesn't justify the 4.5 rating. Beer and food were pretty good. Ambience is average. The music is insanely loud.\n\nBasics of music:\n1. Dance floor = Loud music.\n2. Place where people sit and talk = Low to Medium music.\nThey had loud music all over the place.\n\nI went here for my birthday. It was an average experience. I wouldn't really recommend this place. There are better ones in Koramangala."), ('Rated 4.0', "RATED\n  Wanted to try this place for good reviews it has got also for the wide variety of brewed beers they serve,\nvisited this place on Saturday afternoon with a friend of mine and we were not disappointed, place was already packed...\nRooftop was not open yet I guess it's because they wanted to fill up the floor below first...\nAmbience n decor is same as any other fancy pub in Bangalore nothing special.\nComing to food we ordered Onion rings, sukha mushroom and veg Nachos all of them were really good, Mushroom was excellently prepared,\nWe tried Mango Cider and Dunkleweise beer both of them were really good but Mango Cider stands out for it's taste which might make you wanna go back for this place again.?\nService was great and overall a nice experience and Zomato gold offer made it even better.. :)"), ('Rated 5.0', 'RATED\n  Great Dunkelweiss beer. The Mango Cider was something very unique and totally unexpected. The place has something different compared to other places and it hits you as soon as you get in. Great ambience. Great pizza and fries. I appreciate the quantity and quality. Very reasonable prices. One of the best rooftops I have been to. Mr. FirojÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s service was excellent.'), ('Rated 3.0', 'RATED\n  Nice place to hangout and it also takes Zomato gold which is a plus point.. food and drinks are good.. pricing is on a higher side which you can expect from a brewery in Bangalore.. But DJ was very disappointing and if your expecting a good loud Bollywood or Punjabi number you will be highly disappointed.. he plays only English music which you can also play from your phone..'), ('Rated 4.0', 'RATED\n  Visited tonight for a few drinks with some friends. The drinks and food selection menus were quite vast and offers a lot of items. We ordered one Belgian Wit and a Mango Cider. The Belgian Wit was the better choice of the two as the beer had a really good taste along with a nice citrus note background.\n\nOrdered a proration of Roasted Chilli Pork to go along with that but that didnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t meet up the expectations. Since having some really good Pork dishes around Bangalore IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d say this was a let down as the meat wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as tender and the spice wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as delicious. Anyway a chill place overall and do go and try out if you feel like! ??'), ('Rated 2.0', "RATED\n  The place really doesn't justify the 4.5 rating. Beer and food were pretty good. Ambience is average. The music is insanely loud.\n\nBasics of music:\n1. Dance floor = Loud music.\n2. Place where people sit and talk = Low to Medium music.\nThey had loud music all over the place.\n\nI went here for my birthday. It was an average experience. I wouldn't really recommend this place. There are better ones in Koramangala."), ('Rated 4.0', "RATED\n  Wanted to try this place for good reviews it has got also for the wide variety of brewed beers they serve,\nvisited this place on Saturday afternoon with a friend of mine and we were not disappointed, place was already packed...\nRooftop was not open yet I guess it's because they wanted to fill up the floor below first...\nAmbience n decor is same as any other fancy pub in Bangalore nothing special.\nComing to food we ordered Onion rings, sukha mushroom and veg Nachos all of them were really good, Mushroom was excellently prepared,\nWe tried Mango Cider and Dunkleweise beer both of them were really good but Mango Cider stands out for it's taste which might make you wanna go back for this place again.?\nService was great and overall a nice experience and Zomato gold offer made it even better.. :)"), ('Rated 5.0', 'RATED\n  Great Dunkelweiss beer. The Mango Cider was something very unique and totally unexpected. The place has something different compared to other places and it hits you as soon as you get in. Great ambience. Great pizza and fries. I appreciate the quantity and quality. Very reasonable prices. One of the best rooftops I have been to. Mr. FirojÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s service was excellent.'), ('Rated 3.0', 'RATED\n  Nice place to hangout and it also takes Zomato gold which is a plus point.. food and drinks are good.. pricing is on a higher side which you can expect from a brewery in Bangalore.. But DJ was very disappointing and if your expecting a good loud Bollywood or Punjabi number you will be highly disappointed.. he plays only English music which you can also play from your phone..'), ('Rated 4.0', 'RATED\n  Visited tonight for a few drinks with some friends. The drinks and food selection menus were quite vast and offers a lot of items. We ordered one Belgian Wit and a Mango Cider. The Belgian Wit was the better choice of the two as the beer had a really good taste along with a nice citrus note background.\n\nOrdered a proration of Roasted Chilli Pork to go along with that but that didnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t meet up the expectations. Since having some really good Pork dishes around Bangalore IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d say this was a let down as the meat wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as tender and the spice wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as delicious. Anyway a chill place overall and do go and try out if you feel like! ??'), ('Rated 5.0', 'RATED\n  Awesome ambience and amazing crowd. These guys have a ton of craft beers on offer! Hell, they have a mango cider beer! Can it get better?\n\nThe food is something they can work on, but given the rest of the menut and the environment created, this is a must visit on Friday/Saturday night'), ('Rated 5.0', 'RATED\n  One of my favorite place to hangout..I have been coming here since last year and this place is never failed to surprise me. The ambience here is really good . Worth having a drink with all your friends and the pizza is worth trying?Not to forget,mango cider is the best ??'), ('Rated 5.0', 'RATED\n  Great place to hang out with your buddies. Try German whit. Pizza is something die for at this place. Non veg platter is a bliss. Just enjoy your evening and have fun.'), ('Rated 5.0', "RATED\n  Beautiful place to party and have fun!\nWanna party hard and don't feel bad looking at your wallets. Well thai is the place for you!\nWe had real fun and good was really great except cheese balls.\nMojitos are great here and it's highly recommended. Kiwi trader!"), ('Rated 1.0', 'RATED\n  Okay the rooftop is a place for everyones liking. We were given a corner table although we had told them to shift us as soon as possible , they had agreed to it. We had order chicken in banana leaf and pork ribs. Both were average and a bit cold. Also when we informed the waiter to shift us to a better table he denied it. Unfortunately they wasted our time and money. Very disappointed .'), ('Rated 5.0', 'RATED\n  Awesome ambience and amazing crowd. These guys have a ton of craft beers on offer! Hell, they have a mango cider beer! Can it get better?\n\nThe food is something they can work on, but given the rest of the menut and the environment created, this is a must visit on Friday/Saturday night'), ('Rated 5.0', 'RATED\n  One of my favorite place to hangout..I have been coming here since last year and this place is never failed to surprise me. The ambience here is really good . Worth having a drink with all your friends and the pizza is worth trying?Not to forget,mango cider is the best ??'), ('Rated 5.0', 'RATED\n  Great place to hang out with your buddies. Try German whit. Pizza is something die for at this place. Non veg platter is a bliss. Just enjoy your evening and have fun.'), ('Rated 5.0', "RATED\n  Beautiful place to party and have fun!\nWanna party hard and don't feel bad looking at your wallets. Well thai is the place for you!\nWe had real fun and good was really great except cheese balls.\nMojitos are great here and it's highly recommended. Kiwi trader!"), ('Rated 1.0', 'RATED\n  Okay the rooftop is a place for everyones liking. We were given a corner table although we had told them to shift us as soon as possible , they had agreed to it. We had order chicken in banana leaf and pork ribs. Both were average and a bit cold. Also when we informed the waiter to shift us to a better table he denied it. Unfortunately they wasted our time and money. Very disappointed .'), ('Rated 5.0', 'RATED\n  Awesome ambience and amazing crowd. These guys have a ton of craft beers on offer! Hell, they have a mango cider beer! Can it get better?\n\nThe food is something they can work on, but given the rest of the menut and the environment created, this is a must visit on Friday/Saturday night'), ('Rated 5.0', 'RATED\n  One of my favorite place to hangout..I have been coming here since last year and this place is never failed to surprise me. The ambience here is really good . Worth having a drink with all your friends and the pizza is worth trying?Not to forget,mango cider is the best ??'), ('Rated 5.0', 'RATED\n  Great place to hang out with your buddies. Try German whit. Pizza is something die for at this place. Non veg platter is a bliss. Just enjoy your evening and have fun.'), ('Rated 5.0', "RATED\n  Beautiful place to party and have fun!\nWanna party hard and don't feel bad looking at your wallets. Well thai is the place for you!\nWe had real fun and good was really great except cheese balls.\nMojitos are great here and it's highly recommended. Kiwi trader!"), ('Rated 1.0', 'RATED\n  Okay the rooftop is a place for everyones liking. We were given a corner table although we had told them to shift us as soon as possible , they had agreed to it. We had order chicken in banana leaf and pork ribs. Both were average and a bit cold. Also when we informed the waiter to shift us to a better table he denied it. Unfortunately they wasted our time and money. Very disappointed .'), ('Rated 5.0', 'RATED\n  Awesome ambience and amazing crowd. These guys have a ton of craft beers on offer! Hell, they have a mango cider beer! Can it get better?\n\nThe food is something they can work on, but given the rest of the menut and the environment created, this is a must visit on Friday/Saturday night'), ('Rated 5.0', 'RATED\n  One of my favorite place to hangout..I have been coming here since last year and this place is never failed to surprise me. The ambience here is really good . Worth having a drink with all your friends and the pizza is worth trying?Not to forget,mango cider is the best ??'), ('Rated 5.0', 'RATED\n  Great place to hang out with your buddies. Try German whit. Pizza is something die for at this place. Non veg platter is a bliss. Just enjoy your evening and have fun.'), ('Rated 5.0', "RATED\n  Beautiful place to party and have fun!\nWanna party hard and don't feel bad looking at your wallets. Well thai is the place for you!\nWe had real fun and good was really great except cheese balls.\nMojitos are great here and it's highly recommended. Kiwi trader!"), ('Rated 1.0', 'RATED\n  Okay the rooftop is a place for everyones liking. We were given a corner table although we had told them to shift us as soon as possible , they had agreed to it. We had order chicken in banana leaf and pork ribs. Both were average and a bit cold. Also when we informed the waiter to shift us to a better table he denied it. Unfortunately they wasted our time and money. Very disappointed .'), ('Rated 4.0', 'RATED\n  Good beer..\nChilly evening...\nGood food..\nAmbience is good..\nNice crowd ..\nHelpful and very friendly staffs and service\nPost Christmas done right in Brooks and Bonds\n-Many Thanks ?'), ('Rated 5.0', 'RATED\n  Amazing place, if you are looking for some amazing brewed beers in Bangalore.\nAnd I am certain the place will be part of your brewing love story with your loved ones. :) Cheers'), ('Rated 4.0', 'RATED\n  Love this place! I would recommend everyone to try this once all the beers are good and nice cocktails and the food is amazing too and also the ambience'), ('Rated 5.0', "RATED\n  Super amazing place. This was my first time here, and the cold January air in the rooftop bar on the fourth floor. Great music, like they're playing Urvashi as I write this. Amazing service, and I'm definitely coming back here."), ('Rated 4.0', "RATED\n  Decent place with a rooftop which was sadly closed as it only opens at 8. A decent place to catch up for good craft beer. We ordered chilli chicken which was decent and as we had zomato gold and it had 1+1 on food we got beef stir fry. The beef was not that well cooked and was little hard to chew. We got mango madness which was decent and a coffee flavoured moctail that was really bad(no idea of the name). All together it's a nice place to visit and have a good time with good music."), ('Rated 4.0', 'RATED\n  Good beer..\nChilly evening...\nGood food..\nAmbience is good..\nNice crowd ..\nHelpful and very friendly staffs and service\nPost Christmas done right in Brooks and Bonds\n-Many Thanks ?'), ('Rated 5.0', 'RATED\n  Amazing place, if you are looking for some amazing brewed beers in Bangalore.\nAnd I am certain the place will be part of your brewing love story with your loved ones. :) Cheers'), ('Rated 4.0', 'RATED\n  Love this place! I would recommend everyone to try this once all the beers are good and nice cocktails and the food is amazing too and also the ambience'), ('Rated 5.0', "RATED\n  Super amazing place. This was my first time here, and the cold January air in the rooftop bar on the fourth floor. Great music, like they're playing Urvashi as I write this. Amazing service, and I'm definitely coming back here."), ('Rated 4.0', "RATED\n  Decent place with a rooftop which was sadly closed as it only opens at 8. A decent place to catch up for good craft beer. We ordered chilli chicken which was decent and as we had zomato gold and it had 1+1 on food we got beef stir fry. The beef was not that well cooked and was little hard to chew. We got mango madness which was decent and a coffee flavoured moctail that was really bad(no idea of the name). All together it's a nice place to visit and have a good time with good music."), ('Rated 3.0', 'RATED\n  Location: 5th block, Koramangala\n\nAmbience : Nice along with Rooftop.\n\nStaff and Service : Prompt and friendly.\n\nTaste: Not good.\n\nCost: 1200 for two\n\nThe atmosphere was lit with good crowd. The music in the background was also good. We ordered nachos, white sauce pasta n pizza. Nachos were really disappointing. The beer was good.\nDJ was playing only english songs, no bollywood, punjabi songs.'), ('Rated 4.0', 'RATED\n  I had visited Brooks and Bonds when the place was relatively new and the brewery was not functional yet. We took the regular drinks like a couple of canned beers, some vodka shots and whiskey which was pretty standard.\nIn food, we tried their \nCaesar Salad \nFrench Fries\nCheese Fries\nMasala Peanuts\nVegetariano Pizza\n\nThe food was good and the staff was courteous and accommodative. Even though the place was jam packed and we found a small table for a group of 7 people, the staff was kind enough to have us seated and infact helped us gather some extra chairs(brownie points haha). The songs and the ambience were really good and we could enjoy the peppy numbers as well as they were no hindrance to us talking to our friends.\nI rest my case.'), ('Rated 4.0', 'RATED\n  ????\nWent for lunch at Brooks and Bonds. The starters were tasty and brownie was lip-smacking. However the service was very slow, but good food compensated.'), ('Rated 5.0', "RATED\n  After having bad pub experiences, this place comes as a ray of hope to me. I am not being generous, but this place deserves 5 stars. Service was awesome. They were taking time to bring some of the dishes but it didn't matter much. Staff was warm and polite. The best part about Brooks and Bonds is their food and drinks. They ace at this department which is utmost important. We had ordered Chicken 65, Bhatti ka Tandoori Chicken, Sookha Mushroom, Veg pizza, Mac and mushroom and they were all delicious. Drinks were also good. Their brewed beers especially German wheat beer was too good.\n\nFood: 5/5\nDrinks: 5/5\nService: 4/5\nAmbience: 5/5"), ('Rated 5.0', 'RATED\n  Stay tuned for a lovely review of one exciting place in kormangala, Bengaluru.\n\nPlace - Brooks and bonds microbrewery\nLocation - kormangala , bengaluru\nName of the dish -\nRating (out of 5)\n\nRestaurant - 5\nDish featured - 5\nFlavours - 5\nService - quick & friendly\nOverall - ? ? ? ? ?'), ('Rated 3.0', 'RATED\n  Location: 5th block, Koramangala\n\nAmbience : Nice along with Rooftop.\n\nStaff and Service : Prompt and friendly.\n\nTaste: Not good.\n\nCost: 1200 for two\n\nThe atmosphere was lit with good crowd. The music in the background was also good. We ordered nachos, white sauce pasta n pizza. Nachos were really disappointing. The beer was good.\nDJ was playing only english songs, no bollywood, punjabi songs.'), ('Rated 4.0', 'RATED\n  I had visited Brooks and Bonds when the place was relatively new and the brewery was not functional yet. We took the regular drinks like a couple of canned beers, some vodka shots and whiskey which was pretty standard.\nIn food, we tried their \nCaesar Salad \nFrench Fries\nCheese Fries\nMasala Peanuts\nVegetariano Pizza\n\nThe food was good and the staff was courteous and accommodative. Even though the place was jam packed and we found a small table for a group of 7 people, the staff was kind enough to have us seated and infact helped us gather some extra chairs(brownie points haha). The songs and the ambience were really good and we could enjoy the peppy numbers as well as they were no hindrance to us talking to our friends.\nI rest my case.'), ('Rated 4.0', 'RATED\n  ????\nWent for lunch at Brooks and Bonds. The starters were tasty and brownie was lip-smacking. However the service was very slow, but good food compensated.'), ('Rated 5.0', "RATED\n  After having bad pub experiences, this place comes as a ray of hope to me. I am not being generous, but this place deserves 5 stars. Service was awesome. They were taking time to bring some of the dishes but it didn't matter much. Staff was warm and polite. The best part about Brooks and Bonds is their food and drinks. They ace at this department which is utmost important. We had ordered Chicken 65, Bhatti ka Tandoori Chicken, Sookha Mushroom, Veg pizza, Mac and mushroom and they were all delicious. Drinks were also good. Their brewed beers especially German wheat beer was too good.\n\nFood: 5/5\nDrinks: 5/5\nService: 4/5\nAmbience: 5/5"), ('Rated 5.0', 'RATED\n  Stay tuned for a lovely review of one exciting place in kormangala, Bengaluru.\n\nPlace - Brooks and bonds microbrewery\nLocation - kormangala , bengaluru\nName of the dish -\nRating (out of 5)\n\nRestaurant - 5\nDish featured - 5\nFlavours - 5\nService - quick & friendly\nOverall - ? ? ? ? ?'), ('Rated 3.0', 'RATED\n  Location: 5th block, Koramangala\n\nAmbience : Nice along with Rooftop.\n\nStaff and Service : Prompt and friendly.\n\nTaste: Not good.\n\nCost: 1200 for two\n\nThe atmosphere was lit with good crowd. The music in the background was also good. We ordered nachos, white sauce pasta n pizza. Nachos were really disappointing. The beer was good.\nDJ was playing only english songs, no bollywood, punjabi songs.'), ('Rated 4.0', 'RATED\n  I had visited Brooks and Bonds when the place was relatively new and the brewery was not functional yet. We took the regular drinks like a couple of canned beers, some vodka shots and whiskey which was pretty standard.\nIn food, we tried their \nCaesar Salad \nFrench Fries\nCheese Fries\nMasala Peanuts\nVegetariano Pizza\n\nThe food was good and the staff was courteous and accommodative. Even though the place was jam packed and we found a small table for a group of 7 people, the staff was kind enough to have us seated and infact helped us gather some extra chairs(brownie points haha). The songs and the ambience were really good and we could enjoy the peppy numbers as well as they were no hindrance to us talking to our friends.\nI rest my case.'), ('Rated 4.0', 'RATED\n  ????\nWent for lunch at Brooks and Bonds. The starters were tasty and brownie was lip-smacking. However the service was very slow, but good food compensated.'), ('Rated 5.0', "RATED\n  After having bad pub experiences, this place comes as a ray of hope to me. I am not being generous, but this place deserves 5 stars. Service was awesome. They were taking time to bring some of the dishes but it didn't matter much. Staff was warm and polite. The best part about Brooks and Bonds is their food and drinks. They ace at this department which is utmost important. We had ordered Chicken 65, Bhatti ka Tandoori Chicken, Sookha Mushroom, Veg pizza, Mac and mushroom and they were all delicious. Drinks were also good. Their brewed beers especially German wheat beer was too good.\n\nFood: 5/5\nDrinks: 5/5\nService: 4/5\nAmbience: 5/5"), ('Rated 5.0', 'RATED\n  Stay tuned for a lovely review of one exciting place in kormangala, Bengaluru.\n\nPlace - Brooks and bonds microbrewery\nLocation - kormangala , bengaluru\nName of the dish -\nRating (out of 5)\n\nRestaurant - 5\nDish featured - 5\nFlavours - 5\nService - quick & friendly\nOverall - ? ? ? ? ?'), ('Rated 4.0', 'RATED\n  The food was amazing. The make of lit was upto the mark. They served us mango beer which was just ok , if youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92re not fond of experimenting with beer then this completely something which you would want to try. A big drawback I found was not having bottled beer on the menu. So if you a beer drinker then you may to think before going.'), ('Rated 4.0', 'RATED\n  Had a party at this place,. The service is good. The waiters were prompt. Belgium beer is awesome. The staff and management is courteous. The DJ plays to tunes which touches the party vibes of those partying. Value for money place. Will come again.'), ('Rated 4.0', 'RATED\n  Place is too good to hangout, specially the roof top area. Brewery is also good here, specially Belgian wit. Food is kinda ok, not that tasty and staff is also friendly.'), ('Rated 3.0', "RATED\n  Very good place at roof top on 4th floor. Cool breeze in the evening at 11:00pm . Firstly they did'nt serve water bcoz they did'nt charge SC. Coming to the food very good taste tandoori chicken its well done cook.\n\nDissapointed things is at last in the billing time. They did'nt accepted rupay card and they did'nt mention in zomato as well."), ('Rated 3.0', 'RATED\n  The experience was slightly underwhelming. The thing that stood out the most that we ordered a primavera pasta and they charged us extra to get veggies on it! I mean I sincerely hope the server failed to explain us the concept or we misunderstood him somehow, but it was the most bizzarre thing ever!! How else do you serve a primavera pasta??? Just boiled???\nAmbiance is cool and a good place to hang out with friends. But the music was a little too loud to carry out any conversations.'), ('Rated 4.0', 'RATED\n  The food was amazing. The make of lit was upto the mark. They served us mango beer which was just ok , if youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92re not fond of experimenting with beer then this completely something which you would want to try. A big drawback I found was not having bottled beer on the menu. So if you a beer drinker then you may to think before going.'), ('Rated 4.0', 'RATED\n  Had a party at this place,. The service is good. The waiters were prompt. Belgium beer is awesome. The staff and management is courteous. The DJ plays to tunes which touches the party vibes of those partying. Value for money place. Will come again.'), ('Rated 4.0', 'RATED\n  Place is too good to hangout, specially the roof top area. Brewery is also good here, specially Belgian wit. Food is kinda ok, not that tasty and staff is also friendly.'), ('Rated 3.0', "RATED\n  Very good place at roof top on 4th floor. Cool breeze in the evening at 11:00pm . Firstly they did'nt serve water bcoz they did'nt charge SC. Coming to the food very good taste tandoori chicken its well done cook.\n\nDissapointed things is at last in the billing time. They did'nt accepted rupay card and they did'nt mention in zomato as well."), ('Rated 3.0', 'RATED\n  The experience was slightly underwhelming. The thing that stood out the most that we ordered a primavera pasta and they charged us extra to get veggies on it! I mean I sincerely hope the server failed to explain us the concept or we misunderstood him somehow, but it was the most bizzarre thing ever!! How else do you serve a primavera pasta??? Just boiled???\nAmbiance is cool and a good place to hang out with friends. But the music was a little too loud to carry out any conversations.'), ('Rated 2.0', "RATED\n  The first time I had been to this place was when it didn't have a liquor license, found it quite good. This time, on a Saturday night I felt they couldn't keep up with the number of people who were there. The service was slow and one manager was damn sarcastic! They ruined the night for us. Completely."), ('Rated 2.0', "RATED\n  Visited on a weekend I guess, place was crowded and buzzing. But what ruined the whole experience was the staffs attitude. On calling out that I have a Zomato gold, I started to get interrogated, my ID's checked, etc etc even before I could take a peaceful breath right after get a seat.\nWorse was staff shouting and calling each other at the open terrace space like hooligans. Beer n garlic bread was good. This place can do much better with discipline and appropriate behavior of staff with guests.\nTo me, a total disappointment of the evening!"), ('Rated 3.0', "RATED\n  Lured by the excellent reviews I headed to this place with my partner. The place is situated on the opposite road of Gilly's redefined. Not hard to spot. Cozily situated on the rooftop. The ambience is quite decent. The service is extremely cold. The face they put on while serving people is so bad that you don't even feel like asking them for anything. Coming to the food, it was okayish! We ordered chicken white sauce pasta, Malai kebab and chicken tikka pizza. The pasta had an almost deep fried garlic bread with low quality cheese and Malai kebab can be given mere pass. The pizza was good somehow. Overall disappointing visit. Not planning another one!\n\nLot of scope to improve.\n\nAmbience: 3.9/5\nFood: 3.5/5\nService: 1/5\nValue for money: 3/5"), ('Rated 2.0', 'RATED\n  Terrible place ! .... brew was very bad , we had arrived around 3 pm and the place had barely any beer left , wheat was available but tasted terrible ..... food was decent I guess , tandoor was good\nWouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t visit again in my opinion !'), ('Rated 4.0', 'RATED\n  We were here to celebrate birthday , we were 14 of us . The arrangement of seating was a lil problem but the staff n floor manager were courteous enough to pay attention to our needs n service was good enough . The food was really good, non vegetarian had lot of options but the vegetarians had limited options . We tried non veg platter , fish fingers , tandoori chicken , fiery chicken wings and in the veg section we tried the masala fries , cheese n corn cigars , cheese puffs n pizza . The fries were fried to perfection n a must try . We also tried their signature LIIT they were made according to our request. Overall a good experience n at time there was a delay in the service since it was crowded . But will definitely suggest if you are in for a chilled out evening with frnds .'), ('Rated 2.0', "RATED\n  The first time I had been to this place was when it didn't have a liquor license, found it quite good. This time, on a Saturday night I felt they couldn't keep up with the number of people who were there. The service was slow and one manager was damn sarcastic! They ruined the night for us. Completely."), ('Rated 2.0', "RATED\n  Visited on a weekend I guess, place was crowded and buzzing. But what ruined the whole experience was the staffs attitude. On calling out that I have a Zomato gold, I started to get interrogated, my ID's checked, etc etc even before I could take a peaceful breath right after get a seat.\nWorse was staff shouting and calling each other at the open terrace space like hooligans. Beer n garlic bread was good. This place can do much better with discipline and appropriate behavior of staff with guests.\nTo me, a total disappointment of the evening!"), ('Rated 3.0', "RATED\n  Lured by the excellent reviews I headed to this place with my partner. The place is situated on the opposite road of Gilly's redefined. Not hard to spot. Cozily situated on the rooftop. The ambience is quite decent. The service is extremely cold. The face they put on while serving people is so bad that you don't even feel like asking them for anything. Coming to the food, it was okayish! We ordered chicken white sauce pasta, Malai kebab and chicken tikka pizza. The pasta had an almost deep fried garlic bread with low quality cheese and Malai kebab can be given mere pass. The pizza was good somehow. Overall disappointing visit. Not planning another one!\n\nLot of scope to improve.\n\nAmbience: 3.9/5\nFood: 3.5/5\nService: 1/5\nValue for money: 3/5"), ('Rated 2.0', 'RATED\n  Terrible place ! .... brew was very bad , we had arrived around 3 pm and the place had barely any beer left , wheat was available but tasted terrible ..... food was decent I guess , tandoor was good\nWouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t visit again in my opinion !'), ('Rated 4.0', 'RATED\n  We were here to celebrate birthday , we were 14 of us . The arrangement of seating was a lil problem but the staff n floor manager were courteous enough to pay attention to our needs n service was good enough . The food was really good, non vegetarian had lot of options but the vegetarians had limited options . We tried non veg platter , fish fingers , tandoori chicken , fiery chicken wings and in the veg section we tried the masala fries , cheese n corn cigars , cheese puffs n pizza . The fries were fried to perfection n a must try . We also tried their signature LIIT they were made according to our request. Overall a good experience n at time there was a delay in the service since it was crowded . But will definitely suggest if you are in for a chilled out evening with frnds .'), ('Rated 4.0', 'RATED\n  Good music and rooftop ambience. The seating is spread across 2 floors. The staff is polite and the service is fast, I got my pizza sooner than I got French fries. Craft beers are good but the food options(main course) can be better.\nA good place to chill with your buds.'), ('Rated 4.0', 'RATED\n  Visited this place on wednesday evening, outside sitting was almost full. We had a booking so we got one outside.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Nice ambience , they have both open and inside closed sitting.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 We ordered chicken tikka which was good.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 In drinks we tried few different varieties of brew beer. They all were good and chilled.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Music was average.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Staff and Service was good.'), ('Rated 4.0', 'RATED\n  Very good brewery within the radius for me to take a break from all those boring schedules and end it with some good beer perfect ambience,as time flies past 7/8 pm you see many people flocking in,all time favourite is mango cider which never disappoints no matter how many times you gulp it down it never gets boring,friendly waiters.couldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t talk much about the food as i go there only for the beer.'), ('Rated 4.0', 'RATED\n  What a place! Not that cheap but not that heavy on the pocket too. The place was full of energy on a Friday eve. Really nice space to dance on the 4th floor. Good breeze, good booze, good times. DO try their Mango Cider. Best brewed!'), ('Rated 4.0', 'RATED\n  Good music and rooftop ambience. The seating is spread across 2 floors. The staff is polite and the service is fast, I got my pizza sooner than I got French fries. Craft beers are good but the food options(main course) can be better.\nA good place to chill with your buds.'), ('Rated 4.0', 'RATED\n  Visited this place on wednesday evening, outside sitting was almost full. We had a booking so we got one outside.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Nice ambience , they have both open and inside closed sitting.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 We ordered chicken tikka which was good.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 In drinks we tried few different varieties of brew beer. They all were good and chilled.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Music was average.\nÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Staff and Service was good.'), ('Rated 4.0', 'RATED\n  Very good brewery within the radius for me to take a break from all those boring schedules and end it with some good beer perfect ambience,as time flies past 7/8 pm you see many people flocking in,all time favourite is mango cider which never disappoints no matter how many times you gulp it down it never gets boring,friendly waiters.couldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t talk much about the food as i go there only for the beer.'), ('Rated 4.0', 'RATED\n  What a place! Not that cheap but not that heavy on the pocket too. The place was full of energy on a Friday eve. Really nice space to dance on the 4th floor. Good breeze, good booze, good times. DO try their Mango Cider. Best brewed!'), ('Rated 5.0', "RATED\n  Was in kormangala for some work and I spotted this place.\nLooked really good from outside and thankfully my experience too turned out to be good.Ambiance is really nice and chilled out, that's something that I definitely tell people who ask me about Brooks and Bonds!\nThe service was good and staff was very friendly and the beer was chilled and fab!!\n\nWould surely love to visit it time and again..."), ('Rated 4.0', "RATED\n  Visited this place twice recently on weekdays. The place was jam packed on both occasions! The ambience is great, as is the beer! We tried Belgian Wit and Mango Cider, quite light and refreshing. For food, we tried Masala peanuts, nachos, pasta, vegetariano pizza, and garlic bread. The food is fairly good too.\nOne area which can be improved is- the staff being quicker and more responsive!! They wouldn't get us water or take our order, even after repeated requests. If that wasn't an issue, I'd rate the place 5 stars.\nDo check out this place if you're a beer fan!"), ('Rated 2.0', "RATED\n  Brooks and Bonds Brewery offers great crafted beers. Unfortunately can't say the same about their food. We ordered chicken 65, peri peri chicken wings and a chicken tikka pizza and all of them were painfully average.\n\nP.S - Enjoy 2+2 on drinks with Zomato Gold"), ('Rated 5.0', "RATED\n  Ambiance is nice! That's the first thing you will notice about the place.\nSituated on the main road, finding it is also easy, I don't like going round and round finding a place so thumbs up for that!\nAlso, amazing staff who look after you well.\nBeer was nice, didn't really eat much so can't comment on food.\nOverall, I would like to visit again and try their food items!"), ('Rated 5.0', 'RATED\n  Loved the music and ambience of the place..\nThe food we ordered was better than expected. Quantity of the food was good enough.\nZomato gold members will enjoy this place much more..\nStaff was polite and service was very good.\nLove the place, would go again!'), ('Rated 5.0', "RATED\n  Was in kormangala for some work and I spotted this place.\nLooked really good from outside and thankfully my experience too turned out to be good.Ambiance is really nice and chilled out, that's something that I definitely tell people who ask me about Brooks and Bonds!\nThe service was good and staff was very friendly and the beer was chilled and fab!!\n\nWould surely love to visit it time and again..."), ('Rated 4.0', "RATED\n  Visited this place twice recently on weekdays. The place was jam packed on both occasions! The ambience is great, as is the beer! We tried Belgian Wit and Mango Cider, quite light and refreshing. For food, we tried Masala peanuts, nachos, pasta, vegetariano pizza, and garlic bread. The food is fairly good too.\nOne area which can be improved is- the staff being quicker and more responsive!! They wouldn't get us water or take our order, even after repeated requests. If that wasn't an issue, I'd rate the place 5 stars.\nDo check out this place if you're a beer fan!"), ('Rated 2.0', "RATED\n  Brooks and Bonds Brewery offers great crafted beers. Unfortunately can't say the same about their food. We ordered chicken 65, peri peri chicken wings and a chicken tikka pizza and all of them were painfully average.\n\nP.S - Enjoy 2+2 on drinks with Zomato Gold"), ('Rated 5.0', "RATED\n  Ambiance is nice! That's the first thing you will notice about the place.\nSituated on the main road, finding it is also easy, I don't like going round and round finding a place so thumbs up for that!\nAlso, amazing staff who look after you well.\nBeer was nice, didn't really eat much so can't comment on food.\nOverall, I would like to visit again and try their food items!"), ('Rated 5.0', 'RATED\n  Loved the music and ambience of the place..\nThe food we ordered was better than expected. Quantity of the food was good enough.\nZomato gold members will enjoy this place much more..\nStaff was polite and service was very good.\nLove the place, would go again!'), ('Rated 4.0', "RATED\n  Ambience is very nice if you're choosing to sit on open terrace.Overall was a great experience with food and drinks . Try the local mocktails hers they are amazing."), ('Rated 5.0', 'RATED\n  We have been tried this place for the first time. I loved it and the ambience was nice along with the drinks. You can get good breweries in this place. I will try it again.'), ('Rated 3.0', 'RATED\n  The place has a good ambience but the service is very very slow and the food options are not so great.The French fries were pretty good.It is rather loud and hence not a great place for conversation but the beer is definitely good.'), ('Rated 3.0', "RATED\n  Don't know but this place didn't impress me a lot. We had nachos , fish tikka and bharwan tangdi.Except the nachos nothing appealed us too much"), ('Rated 4.0', 'RATED\n  We had a pretty Diwali ? party here. Nice ambience and location is very easy to access. We tried their all brewed beers which they produce on their own brewery. Taste was good and we also ordered couple of starters which were really great. We liked fried prawns the most. Service was okay.'), ('Rated 4.0', "RATED\n  Ambience is very nice if you're choosing to sit on open terrace.Overall was a great experience with food and drinks . Try the local mocktails hers they are amazing."), ('Rated 5.0', 'RATED\n  We have been tried this place for the first time. I loved it and the ambience was nice along with the drinks. You can get good breweries in this place. I will try it again.'), ('Rated 3.0', 'RATED\n  The place has a good ambience but the service is very very slow and the food options are not so great.The French fries were pretty good.It is rather loud and hence not a great place for conversation but the beer is definitely good.'), ('Rated 3.0', "RATED\n  Don't know but this place didn't impress me a lot. We had nachos , fish tikka and bharwan tangdi.Except the nachos nothing appealed us too much"), ('Rated 4.0', 'RATED\n  We had a pretty Diwali ? party here. Nice ambience and location is very easy to access. We tried their all brewed beers which they produce on their own brewery. Taste was good and we also ordered couple of starters which were really great. We liked fried prawns the most. Service was okay.'), ('Rated 4.0', 'RATED\n  That was my first visit over there. We went to terrace and I liked the ambience.\nWe had order bhatti ka tandoori chicken, pepper mushroom, veg calzone and non veg calzone.\nWe ordered beg n non veg both the calzone because my friend loved it. Personally I liked veg more might be because I am a veg lover.\nOver all it was a nice experience.'), ('Rated 5.0', 'RATED\n  Great place, tasty beers and delicious food. Tried so many varieties of beer and loved Belgian Wit. On chefÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s recommendation, tasted Pachi Mirapakaya Kodi, spicy boneless chicken with masala wrapped in banana leaf and it was the best thing of the night.'), ('Rated 3.0', "RATED\n  Went here with a bunch of friends. The service was absolutely not good. Liked the beer. Food was equally good. A bit overpriced though. But services need to be improved. Staff wasn't courteous enought. But liked the place."), ('Rated 5.0', 'RATED\n  I liked this place a lot.. I was there with my friends twice and we had a good time on both the visit.\nThe place deserves a rating higher than 5! The quality of the food is perfectly satisfying. Their portion sizes are generous. The ambience is great, whether you go with friends or family.\nThe prices are not too high, which is again a thumbs up!\nGreat experience hope to visit again soon.'), ('Rated 4.0', "RATED\n  I've been to this brewery twice in the past one month. Used Zomato gold here and that was a steal deal. You get 2+2 on drinks.\nI enjoy good freshly breed beer and this is among my first choices only for that reason.\nTry the rauchbier- it has a strong undertone of smoked bacon. (Yummy). I hear the mango one is also pretty good, haven't tried it as yet.\n\nThe other dish worth a mention is their chilly beef. It's among the best I've had in Koramangala.\n\nThe staff are pretty decent and the ambience is just okay-ish."), ('Rated 4.0', 'RATED\n  That was my first visit over there. We went to terrace and I liked the ambience.\nWe had order bhatti ka tandoori chicken, pepper mushroom, veg calzone and non veg calzone.\nWe ordered beg n non veg both the calzone because my friend loved it. Personally I liked veg more might be because I am a veg lover.\nOver all it was a nice experience.'), ('Rated 5.0', 'RATED\n  Great place, tasty beers and delicious food. Tried so many varieties of beer and loved Belgian Wit. On chefÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s recommendation, tasted Pachi Mirapakaya Kodi, spicy boneless chicken with masala wrapped in banana leaf and it was the best thing of the night.'), ('Rated 3.0', "RATED\n  Went here with a bunch of friends. The service was absolutely not good. Liked the beer. Food was equally good. A bit overpriced though. But services need to be improved. Staff wasn't courteous enought. But liked the place."), ('Rated 5.0', 'RATED\n  I liked this place a lot.. I was there with my friends twice and we had a good time on both the visit.\nThe place deserves a rating higher than 5! The quality of the food is perfectly satisfying. Their portion sizes are generous. The ambience is great, whether you go with friends or family.\nThe prices are not too high, which is again a thumbs up!\nGreat experience hope to visit again soon.'), ('Rated 4.0', "RATED\n  I've been to this brewery twice in the past one month. Used Zomato gold here and that was a steal deal. You get 2+2 on drinks.\nI enjoy good freshly breed beer and this is among my first choices only for that reason.\nTry the rauchbier- it has a strong undertone of smoked bacon. (Yummy). I hear the mango one is also pretty good, haven't tried it as yet.\n\nThe other dish worth a mention is their chilly beef. It's among the best I've had in Koramangala.\n\nThe staff are pretty decent and the ambience is just okay-ish."), ('Rated 1.0', "RATED\n  It seems to be a nice place to enjoy, but what's the point if the staff makes it all dull. Seriously this place sets up a benchmark for worst customer experience."), ('Rated 3.0', 'RATED\n  Little difficult to get a table on a weekend, overall great beer and food. The service is good overall with great music and a dancing area. The magician was a hoot.'), ('Rated 4.0', 'RATED\n  Great experience. Decent place to chill out with friends. Crafted beers are very good and they have lot of varieties too. Food is amazing. Overall good experience. Looking forward to visit again if I go to Blore again\nWe had ordered prawns, French fries and chicken starters . All were amazing\nFood -4/5\nBeers-4/5\nAmbience -4/5'), ('Rated 5.0', "RATED\n  This new kid on the block has rocked it with it's variety of brewed beers and the food. The beers are too good and so is the taste of the food. The ambiance is lively and happening. Have been there twice already - one for our team get together and the other time with my better half. And it did not disappoint on both the occasion. A must visit!"), ('Rated 5.0', "RATED\n  Had a great time with a friend here and enjoyed the service and food especially! Great fun! It's worth a visit if you're in vicinty! Try the egg roast."), ('Rated 1.0', "RATED\n  It seems to be a nice place to enjoy, but what's the point if the staff makes it all dull. Seriously this place sets up a benchmark for worst customer experience."), ('Rated 3.0', 'RATED\n  Little difficult to get a table on a weekend, overall great beer and food. The service is good overall with great music and a dancing area. The magician was a hoot.'), ('Rated 4.0', 'RATED\n  Great experience. Decent place to chill out with friends. Crafted beers are very good and they have lot of varieties too. Food is amazing. Overall good experience. Looking forward to visit again if I go to Blore again\nWe had ordered prawns, French fries and chicken starters . All were amazing\nFood -4/5\nBeers-4/5\nAmbience -4/5'), ('Rated 5.0', "RATED\n  This new kid on the block has rocked it with it's variety of brewed beers and the food. The beers are too good and so is the taste of the food. The ambiance is lively and happening. Have been there twice already - one for our team get together and the other time with my better half. And it did not disappoint on both the occasion. A must visit!"), ('Rated 5.0', "RATED\n  Had a great time with a friend here and enjoyed the service and food especially! Great fun! It's worth a visit if you're in vicinty! Try the egg roast."), ('Rated 1.0', "RATED\n  It seems to be a nice place to enjoy, but what's the point if the staff makes it all dull. Seriously this place sets up a benchmark for worst customer experience."), ('Rated 3.0', 'RATED\n  Little difficult to get a table on a weekend, overall great beer and food. The service is good overall with great music and a dancing area. The magician was a hoot.'), ('Rated 4.0', 'RATED\n  Great experience. Decent place to chill out with friends. Crafted beers are very good and they have lot of varieties too. Food is amazing. Overall good experience. Looking forward to visit again if I go to Blore again\nWe had ordered prawns, French fries and chicken starters . All were amazing\nFood -4/5\nBeers-4/5\nAmbience -4/5'), ('Rated 5.0', "RATED\n  This new kid on the block has rocked it with it's variety of brewed beers and the food. The beers are too good and so is the taste of the food. The ambiance is lively and happening. Have been there twice already - one for our team get together and the other time with my better half. And it did not disappoint on both the occasion. A must visit!"), ('Rated 5.0', "RATED\n  Had a great time with a friend here and enjoyed the service and food especially! Great fun! It's worth a visit if you're in vicinty! Try the egg roast."), ('Rated 4.0', 'RATED\n  #zgoldnight While walking with my friends found brooks and bonds on our way immediately decided to have some drinks. We entered the pub on the third floor and found the place with quite less number of people but with loud English music. The food and drinks wear amazing and the best part is they do have a photographer to take your pic with a beautiful smile on your face just say Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x93wishkeyÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94 .\nA wonderful place to visit and if you get the deck you can probably see the traffic with loud music. Who would always wants to listen to vehicle sounds.'), ('Rated 4.0', 'RATED\n  The place was well lit and it was Halloween so the whole area was decorated accordingly. The food was average in both quality and quantity. We ordered lehsooni jhinga,peanut masala and paneer gulfam. Paneer could have been better and the quantity of prawns was less. The beer was nice and strong . We ordered Tequila Sunrise and it was stronger than other places hence nice. Zomato gold was available on beers and cocktails and that was a plus point for the whole evening.'), ('Rated 4.0', 'RATED\n  Great drinks. The taste is very different from other breweries but really nice. We ordered chicken wings, pizza and nachos in food. Loved the food. The staff was very polite too'), ('Rated 3.0', 'RATED\n  The service was a bit slow and the way they kick out people is awefull. Ambience was ok. Service was slow. Food was ok.\n\nFood: 2.5\nService : 2.5\nAmbience : 3\n\nFeedback: please take ur customers seriously.'), ('Rated 4.0', 'RATED\n  #zgoldnight While walking with my friends found brooks and bonds on our way immediately decided to have some drinks. We entered the pub on the third floor and found the place with quite less number of people but with loud English music. The food and drinks wear amazing and the best part is they do have a photographer to take your pic with a beautiful smile on your face just say Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x93wishkeyÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94 .\nA wonderful place to visit and if you get the deck you can probably see the traffic with loud music. Who would always wants to listen to vehicle sounds.'), ('Rated 4.0', 'RATED\n  The place was well lit and it was Halloween so the whole area was decorated accordingly. The food was average in both quality and quantity. We ordered lehsooni jhinga,peanut masala and paneer gulfam. Paneer could have been better and the quantity of prawns was less. The beer was nice and strong . We ordered Tequila Sunrise and it was stronger than other places hence nice. Zomato gold was available on beers and cocktails and that was a plus point for the whole evening.'), ('Rated 4.0', 'RATED\n  Great drinks. The taste is very different from other breweries but really nice. We ordered chicken wings, pizza and nachos in food. Loved the food. The staff was very polite too'), ('Rated 3.0', 'RATED\n  The service was a bit slow and the way they kick out people is awefull. Ambience was ok. Service was slow. Food was ok.\n\nFood: 2.5\nService : 2.5\nAmbience : 3\n\nFeedback: please take ur customers seriously.'), ('Rated 4.0', 'RATED\n  Koramangala is now filled with resturants, more like a food street.. Dragging attention at such kinda place is really diffucult. But this palce has succedded doing it.. If I am not wrong they have 3 + 1 floor being dedicated and each place is different and nice in its onw way.as I visited this place on a saturday noon I opted to sit on 5th floor (one belwo top) being part of octoberfest they had 2-3 more varity of beer brewed.. Their menu for brewed beer explains much clear than any other place and its easy to choose your taste.We ordere few a more tha ususalHara Bara kebab - well cookedcorn fry _ tangy and perfect for chilled beerPeanut masala - not too perfect, needs improvemt as ration of masala was not aptGarlic bread - too wowpizza - Amazingly done, even afer turnign cold wasnt badFish chips - yumm yumm yummiest.. With 7 beer and above food it just costed us 3000/-totally pocket friendly! Visit , you shall definitely love it'), ('Rated 3.0', "RATED\n  One of the best places to chill in Koramangala. Good fresh brewed beer and very delicious food. Staff is very courteous and friendly. Food options are good and it's pocket friendly. Zomato gold is worth it at this place.bht would like to see more food options"), ('Rated 5.0', "RATED\n  Absolutely one of the best bars I've been to in recent times!\nThe food is impeccable as is the vibe. I feel Brooks and Bonds is one of those places you want to keep coming back !!\nNot only does it have really good beer and food , but has great service too!\n\nRecommended. Visiting it sooon."), ('Rated 4.0', 'RATED\n  Koramangala is now filled with resturants, more like a food street.. Dragging attention at such kinda place is really diffucult. But this palce has succedded doing it.. If I am not wrong they have 3 + 1 floor being dedicated and each place is different and nice in its onw way.as I visited this place on a saturday noon I opted to sit on 5th floor (one belwo top) being part of octoberfest they had 2-3 more varity of beer brewed.. Their menu for brewed beer explains much clear than any other place and its easy to choose your taste.We ordere few a more tha ususalHara Bara kebab - well cookedcorn fry _ tangy and perfect for chilled beerPeanut masala - not too perfect, needs improvemt as ration of masala was not aptGarlic bread - too wowpizza - Amazingly done, even afer turnign cold wasnt badFish chips - yumm yumm yummiest.. With 7 beer and above food it just costed us 3000/-totally pocket friendly! Visit , you shall definitely love it'), ('Rated 3.0', "RATED\n  One of the best places to chill in Koramangala. Good fresh brewed beer and very delicious food. Staff is very courteous and friendly. Food options are good and it's pocket friendly. Zomato gold is worth it at this place.bht would like to see more food options"), ('Rated 5.0', "RATED\n  Absolutely one of the best bars I've been to in recent times!\nThe food is impeccable as is the vibe. I feel Brooks and Bonds is one of those places you want to keep coming back !!\nNot only does it have really good beer and food , but has great service too!\n\nRecommended. Visiting it sooon."), ('Rated 4.0', 'RATED\n  Brooks and bonds in kormangala is a very energetic place and has around 3 floors of seating.\n\nAmbience - The ambience here is prefect for a good evening talks and also they have their breweries in the 2nd floor and the seating here they have alot many tables to keep you occupied. The place has a modern look with all classic amenities.\n\nFood - We ordered the spicy cheese corn sticks and after the order came we realised it was alot less for that price and it had only 6 pieces of the sticks but they tasted great with the cheese filling and also the freshness of cheese. Then we went for the paneer pizza and Damn it had 8 pieces with a lot of toppings which was alot worth for that price and it tasted brilliant because of the cheese.\n\nParking - Valet parking is available.\n\nFood - 4/5\nService - 4/5\nAmbience - 4/5\nPrice - 3.5/5\n\nHappy fooding .'), ('Rated 3.0', 'RATED\n  A cool & Nice place.\n\nBeer was good - Balgian wit and Belgian tripel .\nAbout Starters and Main Course was awesome, We ordered Paneer Gulfam ,Pachi chicken tikka slider and few more things.\nEverything was good.\nMain course was also awesome.\n Service was not up to the mark, -2 for that.'), ('Rated 5.0', 'RATED\n  The Ambience really captured my heart....\nChill and fun place to go with your friends ..\nWe went on a Friday evening as all of us got off early from work. The place was slightly crowded but as the time flew by the crowd increased.\nService was quick too, hardly had to wait for food or drinks.\n\nReally a great experience!!\nMUST VISIT!!'), ('Rated 4.0', 'RATED\n  This new brewery took me by surprise with its rooftop ambience.\nPerfect for a brunch setup with some freshly brewn beer and delicious sides to go with. The music is not too loud, which is an added advantage. Perfect for a casual brunch scene or maybe a business meeting as well. Make a reservation for the seats by the edge of the rooftops for a better experience! The chicken nachos are worth a try as were the pork Chilli fry. Happy eating :)'), ('Rated 3.0', 'RATED\n  Good place to have drinks and food but not all the drinks are covered under zomato gold, its no where mentioned.\nThe service is also bit slow.'), ('Rated 4.0', 'RATED\n  Brooks and bonds in kormangala is a very energetic place and has around 3 floors of seating.\n\nAmbience - The ambience here is prefect for a good evening talks and also they have their breweries in the 2nd floor and the seating here they have alot many tables to keep you occupied. The place has a modern look with all classic amenities.\n\nFood - We ordered the spicy cheese corn sticks and after the order came we realised it was alot less for that price and it had only 6 pieces of the sticks but they tasted great with the cheese filling and also the freshness of cheese. Then we went for the paneer pizza and Damn it had 8 pieces with a lot of toppings which was alot worth for that price and it tasted brilliant because of the cheese.\n\nParking - Valet parking is available.\n\nFood - 4/5\nService - 4/5\nAmbience - 4/5\nPrice - 3.5/5\n\nHappy fooding .'), ('Rated 3.0', 'RATED\n  A cool & Nice place.\n\nBeer was good - Balgian wit and Belgian tripel .\nAbout Starters and Main Course was awesome, We ordered Paneer Gulfam ,Pachi chicken tikka slider and few more things.\nEverything was good.\nMain course was also awesome.\n Service was not up to the mark, -2 for that.'), ('Rated 5.0', 'RATED\n  The Ambience really captured my heart....\nChill and fun place to go with your friends ..\nWe went on a Friday evening as all of us got off early from work. The place was slightly crowded but as the time flew by the crowd increased.\nService was quick too, hardly had to wait for food or drinks.\n\nReally a great experience!!\nMUST VISIT!!'), ('Rated 4.0', 'RATED\n  This new brewery took me by surprise with its rooftop ambience.\nPerfect for a brunch setup with some freshly brewn beer and delicious sides to go with. The music is not too loud, which is an added advantage. Perfect for a casual brunch scene or maybe a business meeting as well. Make a reservation for the seats by the edge of the rooftops for a better experience! The chicken nachos are worth a try as were the pork Chilli fry. Happy eating :)'), ('Rated 3.0', 'RATED\n  Good place to have drinks and food but not all the drinks are covered under zomato gold, its no where mentioned.\nThe service is also bit slow.'), ('Rated 3.0', "RATED\n  I would give a 4 if not for the sham of an Oktoberfest menu they have. Their beer is great, especially the one with a bacon aftertaste, but their Oktoberfest menu is simply overpriced and nothing German like. By sprinkling sausages on everything, it doesn't really become German. And the sausages weren't even cooked to perfection!"), ('Rated 4.0', 'RATED\n  * Must Visit for Food n Music *\n\nFood , Ambience , Cocktails , Music - All good.\nPathetic Service.\n\nMy recommendation:\nPaneer Gulfam\nSex on the beach\nDaal Makhni + tandoori roti.'), ('Rated 5.0', 'RATED\n  Finally got a chance to visit this place after it came highly recommended by a friend..\nThe ambiance was the first thing I really really liked.\nGood place to relax and sit and chat with friends family colleagues or to go on a date.\nThe service was really fast and the staff was really cooperative !!\n\nTotally love the ambiance here will come back super soon!!'), ('Rated 3.0', 'RATED\n  Planned to visit for a long time\nbut finally made it\n\nAmbiance??Roof top was not avaiable at 7.30pm , they told post 8.30pm it would be ( Makes no sense )\n\nNot too crowded , Good place for a chit chat\n\nFood?? Pretty resonable\nThings we ordered\n?Murgh Tikka\n?Beef fry\n?Mango Madness\n?Romono ( Not my cuppa tea )\n?Beer\n\nSeevice??Pretty Good'), ('Rated 4.0', 'RATED\n  One of the best beers to have around here is mango cider and hefenweizen, the cuisines are luscious. As this place is on the top floor of a low rise building, the evening ambience is quite pleasing. The staff is friendly and supportive as well.'), ('Rated 3.0', "RATED\n  I would give a 4 if not for the sham of an Oktoberfest menu they have. Their beer is great, especially the one with a bacon aftertaste, but their Oktoberfest menu is simply overpriced and nothing German like. By sprinkling sausages on everything, it doesn't really become German. And the sausages weren't even cooked to perfection!"), ('Rated 4.0', 'RATED\n  * Must Visit for Food n Music *\n\nFood , Ambience , Cocktails , Music - All good.\nPathetic Service.\n\nMy recommendation:\nPaneer Gulfam\nSex on the beach\nDaal Makhni + tandoori roti.'), ('Rated 5.0', 'RATED\n  Finally got a chance to visit this place after it came highly recommended by a friend..\nThe ambiance was the first thing I really really liked.\nGood place to relax and sit and chat with friends family colleagues or to go on a date.\nThe service was really fast and the staff was really cooperative !!\n\nTotally love the ambiance here will come back super soon!!'), ('Rated 3.0', 'RATED\n  Planned to visit for a long time\nbut finally made it\n\nAmbiance??Roof top was not avaiable at 7.30pm , they told post 8.30pm it would be ( Makes no sense )\n\nNot too crowded , Good place for a chit chat\n\nFood?? Pretty resonable\nThings we ordered\n?Murgh Tikka\n?Beef fry\n?Mango Madness\n?Romono ( Not my cuppa tea )\n?Beer\n\nSeevice??Pretty Good'), ('Rated 4.0', 'RATED\n  One of the best beers to have around here is mango cider and hefenweizen, the cuisines are luscious. As this place is on the top floor of a low rise building, the evening ambience is quite pleasing. The staff is friendly and supportive as well.'), ('Rated 4.0', 'RATED\n  Brooks and Bond Brewery\nWent here on a Saturday night , the place was nice and lit\nThe rooftop seating is good\nThey serve a wide variety of brewed beer which is amazing\nMy fav was Dunkelweizen and IPA , Belgium wit and Hefeweizen was normal ,so was the lager\nThe food is good\nThey have a cover charge on the weekends which is totally redeemable\nDefinitely going back to try their other brews !'), ('Rated 4.0', "RATED\n  Id been hearing a lot about this place, and one fine Saturday I convinced my friends to go here. So here I was, inspite of being located beside the bustling main road, the experience remained unaffected. The masala fries, the crazy peanuts and the loaded nachos were a good start to the evening. I could savour every bite. The corn cheese sticks were a little hard but nevertheless lip smacking. I was so much down with alcohol to get the pictures, Sorry for that! But yes, the music is amazing and its one of the must try's on my list today. Have FUN !!!!"), ('Rated 4.0', 'RATED\n  One of the happening brewery in 100 ft road, Koramangala.Spread across 4 floors including rooftop and close area. The interior eclectic and rustic. And a dance floor.\nIt was a Saturday night so the place was fully packed.And DJ adds up to the mood...\nIt has a perfect social bond between the great beers and delectable food. Food tasted good.. beers were also nice specially German wheat beer...\nStaff was helpful,supportive and friendly ...\nOverall a good experience...'), ('Rated 5.0', 'RATED\n  One word to explain the experience - FABULOUS.\nYes this one is a sure recommendation if you are alcohol, food and music lover. The right amalgamation of all the ingredients..\nAmbiance is also good. Also, if you are a zomato gold member your experience will slightly be better than rest of them.\n\nWould definitely visit again'), ('Rated 4.0', 'RATED\n  Brooks and Bond Brewery\nWent here on a Saturday night , the place was nice and lit\nThe rooftop seating is good\nThey serve a wide variety of brewed beer which is amazing\nMy fav was Dunkelweizen and IPA , Belgium wit and Hefeweizen was normal ,so was the lager\nThe food is good\nThey have a cover charge on the weekends which is totally redeemable\nDefinitely going back to try their other brews !'), ('Rated 4.0', "RATED\n  Id been hearing a lot about this place, and one fine Saturday I convinced my friends to go here. So here I was, inspite of being located beside the bustling main road, the experience remained unaffected. The masala fries, the crazy peanuts and the loaded nachos were a good start to the evening. I could savour every bite. The corn cheese sticks were a little hard but nevertheless lip smacking. I was so much down with alcohol to get the pictures, Sorry for that! But yes, the music is amazing and its one of the must try's on my list today. Have FUN !!!!"), ('Rated 4.0', 'RATED\n  One of the happening brewery in 100 ft road, Koramangala.Spread across 4 floors including rooftop and close area. The interior eclectic and rustic. And a dance floor.\nIt was a Saturday night so the place was fully packed.And DJ adds up to the mood...\nIt has a perfect social bond between the great beers and delectable food. Food tasted good.. beers were also nice specially German wheat beer...\nStaff was helpful,supportive and friendly ...\nOverall a good experience...'), ('Rated 5.0', 'RATED\n  One word to explain the experience - FABULOUS.\nYes this one is a sure recommendation if you are alcohol, food and music lover. The right amalgamation of all the ingredients..\nAmbiance is also good. Also, if you are a zomato gold member your experience will slightly be better than rest of them.\n\nWould definitely visit again'), ('Rated 5.0', "RATED\n  It was really fun to be here with my friends !!\nThe vibes here are so good that you just can't resist its charm. The staff is quick and efficient and the food is spectacular! What more can I ask For?\nFor the drinks, beer was good and so were the cocktails we tried.\n\nOverall Experience Was Good, Will Recommend To Everyone.\n\nCheers!!"), ('Rated 1.0', "RATED\n  As much as I liked this place for it's beer and food, the experience I had was terrible. Saturday night had a cover so we pay the amount for 3 people and they asked us to go to level 2. They said they will get us a table in 15 minutes but took 90 minutes to get us a table on level 4. Now if you have to move from level 2 to level 4, I have clear their bill at level 2 (fair enough) but it doesn't work with their cover charge coupons. We have to make calculations as to should we pay in cash here and use coupons upstairs or the other way around so that we don't overpay them (and why should we?). And the staff is not helping coz they are super busy serving the overcrowded place. So yes! I'm not coming here again. As a restaurant, they need to understand the customer convenience."), ('Rated 3.0', 'RATED\n  Polite staff . Okayish food. Nice place to chill out with a bunch of friends. Reserving a table is recommended on weekends. Service TAT can be improved however'), ('Rated 5.0', 'RATED\n  I love the people. Vegan food is limited. Get more.the vegan gaulati was good. Music was very 2000s. Good company, great fun. Team was great too.'), ('Rated 5.0', "RATED\n  It was really fun to be here with my friends !!\nThe vibes here are so good that you just can't resist its charm. The staff is quick and efficient and the food is spectacular! What more can I ask For?\nFor the drinks, beer was good and so were the cocktails we tried.\n\nOverall Experience Was Good, Will Recommend To Everyone.\n\nCheers!!"), ('Rated 1.0', "RATED\n  As much as I liked this place for it's beer and food, the experience I had was terrible. Saturday night had a cover so we pay the amount for 3 people and they asked us to go to level 2. They said they will get us a table in 15 minutes but took 90 minutes to get us a table on level 4. Now if you have to move from level 2 to level 4, I have clear their bill at level 2 (fair enough) but it doesn't work with their cover charge coupons. We have to make calculations as to should we pay in cash here and use coupons upstairs or the other way around so that we don't overpay them (and why should we?). And the staff is not helping coz they are super busy serving the overcrowded place. So yes! I'm not coming here again. As a restaurant, they need to understand the customer convenience."), ('Rated 3.0', 'RATED\n  Polite staff . Okayish food. Nice place to chill out with a bunch of friends. Reserving a table is recommended on weekends. Service TAT can be improved however'), ('Rated 5.0', 'RATED\n  I love the people. Vegan food is limited. Get more.the vegan gaulati was good. Music was very 2000s. Good company, great fun. Team was great too.'), ('Rated 5.0', 'RATED\n  Its an awesome place to visit with friends!!\nAmbiance was amazing. Food was delicious and the quantity provided here is worth the price.\nAlso, how can I forget the beer! That was really good too.\nAll in all it was an awesome experience and would definitely revisit again..'), ('Rated 4.0', "RATED\n  Food: 5/5. The fist fingers and the potato skin dish were amazing.\n\nServive:4/5. The service was quick and polite but we wish they informed us when we asked for some items which doesn't really have a good feedback from other customers as well\n\nAmbiance: Its great only if you can get a seat on the roof or varendha...Else not worth it.\n\nOverall a great place with good music and lively atmosphere."), ('Rated 4.0', "RATED\n  I have visited this place on Saturday's evening. The ambience and the crowd is good.The beer is good.Andhra chicken fry and prawn was really great.The stuffs are good."), ('Rated 5.0', 'RATED\n  The beer is definitely good, Toit hands down has amazing beer but this too is really really good!!\nAlso, good spacious place to come with friends and enjoy and party and get drunk..\nThe staff too are so courteous..\n\nWill surely be back again !\nCheers!'), ('Rated 4.0', "RATED\n  Yet another favorite brewery in Koramangla. Brooks and Bonds is situated on 100 feet road and has a great buzz. It is spread across two floors and has plenty of seating available. I personally loved the rooftop section. The interiors are rustic and eclectic with varied colours and lights. The ambience is very alluring.\n\nComing to the food, onion rings were soft and perfectly fried. Absolutely loved this starter. Chicken Tikka had rich spices and tasted amazing. We also tried Pizza Alla margherita which was delectable with generous amount of cheese which added to the flavor. Among the drinks I'd recommend German wheat which is light and smooth and tasted delicious.\n\nThe staff was very friendly and prompt and the service is pretty quick. All in all, we had a great experience!"), ('Rated 4.0', "RATED\n  Sundays are lazy n the perfect place to sit n relax with friends is this place. Went in for a brunch n ate to my heart's content. Perfect place with good food n well maintained ambience. The music is good with some classic numbers. The service is awesome n right on time.\n\nThe drinks (cocktails) could have been a bit better but no complaints. An apt place for lazy sundays to spend n kick start anothet week with a Bang!!!"), ('Rated 4.0', 'RATED\n  I wanted to visit this place from a longtime, the rooftop ambience is very good, but unfortunately they open it only on weekends...I ordered shots they were good coming to the service, it was good but it can be better....overall a good experience!!\nWould I visit this place again - yes'), ('Rated 4.0', 'RATED\n  Yay, another addition to the breweries collection in Bangalore.\n\nBeer:\nThey do serve a few other beers that arenÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t mentioned in the Zomato menu here- like currently they have Dunkel Weisse(this is a pretty good stout) and Strawberry Cider(too fruity for me). If youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92re trying something new like this, IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d suggest you get a sampler first because their serving is in a 575ml mug for the regular beers.\n\nFood:\nThe non veg platter is decent. A flavoursome fish dish you could try here is something thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cooked in banana leaves. (CanÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t recall the name) Chicken 65 is pretty good here. For veg, we tried the hummus and pita- a really good portion.\n\nBonus: ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s on Zomato Gold. Make sure you have your ID on you, though. Cheers!'), ('Rated 4.0', "RATED\n  Yet another favorite brewery in Koramangla. Brooks and Bonds is situated on 100 feet road and has a great buzz. It is spread across two floors and has plenty of seating available. I personally loved the rooftop section. The interiors are rustic and eclectic with varied colours and lights. The ambience is very alluring.\n\nComing to the food, onion rings were soft and perfectly fried. Absolutely loved this starter. Chicken Tikka had rich spices and tasted amazing. We also tried Pizza Alla margherita which was delectable with generous amount of cheese which added to the flavor. Among the drinks I'd recommend German wheat which is light and smooth and tasted delicious.\n\nThe staff was very friendly and prompt and the service is pretty quick. All in all, we had a great experience!"), ('Rated 4.0', "RATED\n  Sundays are lazy n the perfect place to sit n relax with friends is this place. Went in for a brunch n ate to my heart's content. Perfect place with good food n well maintained ambience. The music is good with some classic numbers. The service is awesome n right on time.\n\nThe drinks (cocktails) could have been a bit better but no complaints. An apt place for lazy sundays to spend n kick start anothet week with a Bang!!!"), ('Rated 4.0', 'RATED\n  I wanted to visit this place from a longtime, the rooftop ambience is very good, but unfortunately they open it only on weekends...I ordered shots they were good coming to the service, it was good but it can be better....overall a good experience!!\nWould I visit this place again - yes'), ('Rated 4.0', 'RATED\n  Yay, another addition to the breweries collection in Bangalore.\n\nBeer:\nThey do serve a few other beers that arenÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t mentioned in the Zomato menu here- like currently they have Dunkel Weisse(this is a pretty good stout) and Strawberry Cider(too fruity for me). If youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92re trying something new like this, IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d suggest you get a sampler first because their serving is in a 575ml mug for the regular beers.\n\nFood:\nThe non veg platter is decent. A flavoursome fish dish you could try here is something thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cooked in banana leaves. (CanÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t recall the name) Chicken 65 is pretty good here. For veg, we tried the hummus and pita- a really good portion.\n\nBonus: ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s on Zomato Gold. Make sure you have your ID on you, though. Cheers!'), ('Rated 4.5', "RATED\n  A great ambiance coupled with Bangalore's awesome cold weather makes it a great place to have dinner.\n\nA very romantic kind of place.\n\nWe had -\n\nCream Cheese Sauce pasta - 5/5 (Amazing)\nVegetariano pizza - 4.5/5\nBelgian wit beer - 5/5 (Great)\n\nOverall great place. Would definitely love to go again!!"), ('Rated 5.0', 'RATED\n  Brewed beers are always a delight and they do brew some good beer over here! Food is good too! Can be busy during peak hours and they have an amazing roof top which can be enjoyed ! Recommended ! Along with zomato gold itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a delight over here'), ('Rated 5.0', "RATED\n  It's one amazing place.. the food is great and worth !! The drinks are also quiet affordable !! It's a good place to hang out with friends !!"), ('Rated 4.0', 'RATED\n  The terrace on the top! It is the best place to be in Koramangala after 10pm - provided you get a table!\n\nBut the hygiene is a big letdown - the bathrooms are always very dirty. I understand a part of the blame goes to the customer and they really donÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t make this job easy but in a customer-centric industry, this is a part of the business.'), ('Rated 3.5', "RATED\n  The quirky outlook of this place attracted me here but ambience on the inside is just as normal as any other place.\nBeing a fan of brewed beer we picked one of mango cider, Belgian wit and hefeweizen each.\nUndoubtedly, loved the Belgian wit and hefeweizen but not the mango cider.\nApart from beer, we ordered two quick bites and a pizza. It was served real quick and tasted good.\nAll in all, it's a 3.5 for this place!"), ('Rated 4.5', "RATED\n  A great ambiance coupled with Bangalore's awesome cold weather makes it a great place to have dinner.\n\nA very romantic kind of place.\n\nWe had -\n\nCream Cheese Sauce pasta - 5/5 (Amazing)\nVegetariano pizza - 4.5/5\nBelgian wit beer - 5/5 (Great)\n\nOverall great place. Would definitely love to go again!!"), ('Rated 5.0', 'RATED\n  Brewed beers are always a delight and they do brew some good beer over here! Food is good too! Can be busy during peak hours and they have an amazing roof top which can be enjoyed ! Recommended ! Along with zomato gold itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a delight over here'), ('Rated 5.0', "RATED\n  It's one amazing place.. the food is great and worth !! The drinks are also quiet affordable !! It's a good place to hang out with friends !!"), ('Rated 4.0', 'RATED\n  The terrace on the top! It is the best place to be in Koramangala after 10pm - provided you get a table!\n\nBut the hygiene is a big letdown - the bathrooms are always very dirty. I understand a part of the blame goes to the customer and they really donÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t make this job easy but in a customer-centric industry, this is a part of the business.'), ('Rated 3.5', "RATED\n  The quirky outlook of this place attracted me here but ambience on the inside is just as normal as any other place.\nBeing a fan of brewed beer we picked one of mango cider, Belgian wit and hefeweizen each.\nUndoubtedly, loved the Belgian wit and hefeweizen but not the mango cider.\nApart from beer, we ordered two quick bites and a pizza. It was served real quick and tasted good.\nAll in all, it's a 3.5 for this place!"), ('Rated 3.0', "RATED\n  Amazing service due to the amicable staff. Orders are delayed or forgotten in the heavy onslaught of customers, but it's ok when they are that friendly and willing to rectify it immediately.\n\nFood is at max a 3.5/5, not more. Something amiss.\n\nAmbience is brilliant though, with the junkyard groove going on as a theme.\n\nDownside was the Beer. Tried three varieties, and none hit the spot. Also, a single size in a large mug of serving makes it difficult to go for more varieties. Hopefully a serving around 300 ml also makes an entry soon.\n\nWishing them the best, because I would love to visit again on better grounds!"), ('Rated 5.0', 'RATED\n  Awesome Place.. Brewery is really good.They have so many options in beer..Food is really tasty. loved the ambience and rooftop is the best.DJ is good.They have a small dance floor which attracts a decent crowd... Weekends are crowded though no doubt..Sangria was Good..In fact Main course was also good.Very good staff. Definitely visiting next time.'), ('Rated 4.0', 'RATED\n  Too crowded even during the lunch time. Maybe its the Koramangala crowd. Beer was really good along with a few starters. Service could have been better but overall definitely a must try place.'), ('Rated 5.0', "RATED\n  Tried this place after a lot of friends saying for it...\nAnd i would say i was not let down..\nBeer was real and good.. that's why a 5.\nFood and se4vice are also real good.. the place looks real good both in and out.. would add this place to my weekend go to's.."), ('Rated 3.0', "RATED\n  Amazing service due to the amicable staff. Orders are delayed or forgotten in the heavy onslaught of customers, but it's ok when they are that friendly and willing to rectify it immediately.\n\nFood is at max a 3.5/5, not more. Something amiss.\n\nAmbience is brilliant though, with the junkyard groove going on as a theme.\n\nDownside was the Beer. Tried three varieties, and none hit the spot. Also, a single size in a large mug of serving makes it difficult to go for more varieties. Hopefully a serving around 300 ml also makes an entry soon.\n\nWishing them the best, because I would love to visit again on better grounds!"), ('Rated 5.0', 'RATED\n  Awesome Place.. Brewery is really good.They have so many options in beer..Food is really tasty. loved the ambience and rooftop is the best.DJ is good.They have a small dance floor which attracts a decent crowd... Weekends are crowded though no doubt..Sangria was Good..In fact Main course was also good.Very good staff. Definitely visiting next time.'), ('Rated 4.0', 'RATED\n  Too crowded even during the lunch time. Maybe its the Koramangala crowd. Beer was really good along with a few starters. Service could have been better but overall definitely a must try place.'), ('Rated 5.0', "RATED\n  Tried this place after a lot of friends saying for it...\nAnd i would say i was not let down..\nBeer was real and good.. that's why a 5.\nFood and se4vice are also real good.. the place looks real good both in and out.. would add this place to my weekend go to's.."), ('Rated 4.0', 'RATED\n  The Belgian Wit and German Wheat Beer is good. We ordered non-vegetarian platter. We were only served chicken in the platter. The pizza was very nice. A friendly and courteous staff. I recommend the place for a nice time.'), ('Rated 4.0', 'RATED\n  I went to this place on a fine saturday afternoon, and chose to sit on the open roof seating. It was moderately crowded and the staff was very courteous. I had heard a lot about the brewed beer served here, and so ordered for their testers. And having tasted that, we decided on what all flavours to order. And to accompany the beer, we ordered for nachos and cheesy french fries. Later we even ordered pizza. Everything tasted decent and their beers were exceptional.'), ('Rated 4.0', 'RATED\n  The Ambience is Superb on the Rooftop and Service is also Good. Lively place with good in house Craft Beer.The Waiters were very Courteous and Service fast..The food was Average..They should Improve on the food part. But, otherwise it was a good experience...'), ('Rated 4.0', "RATED\n  Nice rooftop place with some good beers. They also have Zomato gold 2+2 on drinks. The pepperoni pizza was okay'ish..I've had better. The beers were quite nice, especially the DunkelWeizen and the Pale ale. Has a dance floor too in case you feel like busting some moves. :)"), ('Rated 4.0', 'RATED\n  Good place for a quick hangout. Drinks were good. Must try the brewed beer. Food was just okay. Could work on he quantity as well.\nOverall\nFood 3/5\nAmbience 5/5\nService 4/5'), ('Rated 4.0', 'RATED\n  The Belgian Wit and German Wheat Beer is good. We ordered non-vegetarian platter. We were only served chicken in the platter. The pizza was very nice. A friendly and courteous staff. I recommend the place for a nice time.'), ('Rated 4.0', 'RATED\n  I went to this place on a fine saturday afternoon, and chose to sit on the open roof seating. It was moderately crowded and the staff was very courteous. I had heard a lot about the brewed beer served here, and so ordered for their testers. And having tasted that, we decided on what all flavours to order. And to accompany the beer, we ordered for nachos and cheesy french fries. Later we even ordered pizza. Everything tasted decent and their beers were exceptional.'), ('Rated 4.0', 'RATED\n  The Ambience is Superb on the Rooftop and Service is also Good. Lively place with good in house Craft Beer.The Waiters were very Courteous and Service fast..The food was Average..They should Improve on the food part. But, otherwise it was a good experience...'), ('Rated 4.0', "RATED\n  Nice rooftop place with some good beers. They also have Zomato gold 2+2 on drinks. The pepperoni pizza was okay'ish..I've had better. The beers were quite nice, especially the DunkelWeizen and the Pale ale. Has a dance floor too in case you feel like busting some moves. :)"), ('Rated 4.0', 'RATED\n  Good place for a quick hangout. Drinks were good. Must try the brewed beer. Food was just okay. Could work on he quantity as well.\nOverall\nFood 3/5\nAmbience 5/5\nService 4/5'), ('Rated 1.0', 'RATED\n  The place has decent beers, bad food and pathetic service.\n1st they have more people in the place than seats on top of that they say that zomato gold is only applicable for table orders and nit bar order.\nAlso the Sangria that these people served me was so diluted that I couldÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve fed it to an infant as a health drink.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve had pretty much bad experiences at this place.\nThe music also is bad.\nIf only you get a table here then you might wanna stay.'), ('Rated 5.0', "RATED\n  Amazing place with good ambience , tasty food. Polite staff.Fast service, we didn't have to wait for food. Overall , we enjoyed a lot. Nice place to spend time with friends."), ('Rated 5.0', 'RATED\n  Brooks and bonds is a really nice brewery. Loved their Belgian wit. Strawberry cider is interesting while their Dunkle weizen is a recommend as well'), ('Rated 4.0', 'RATED\n  A Saturday night chill place, had a couple of freshly brewed beers, ordered Pizzas and Pasta. The beer was good, the food was good too! Loved the burger! The ambience is rustic and very appealing, crowd is good too.\n\nIn terms of service there was a little hesitation, but I give the management the benefit of doubt as on the same Saturday night they had a private party and it was a bee hive.\n\nAll in all a great place. Untill next time, cheers! :)'), ('Rated 1.0', 'RATED\n  The place has decent beers, bad food and pathetic service.\n1st they have more people in the place than seats on top of that they say that zomato gold is only applicable for table orders and nit bar order.\nAlso the Sangria that these people served me was so diluted that I couldÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve fed it to an infant as a health drink.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve had pretty much bad experiences at this place.\nThe music also is bad.\nIf only you get a table here then you might wanna stay.'), ('Rated 5.0', "RATED\n  Amazing place with good ambience , tasty food. Polite staff.Fast service, we didn't have to wait for food. Overall , we enjoyed a lot. Nice place to spend time with friends."), ('Rated 5.0', 'RATED\n  Brooks and bonds is a really nice brewery. Loved their Belgian wit. Strawberry cider is interesting while their Dunkle weizen is a recommend as well'), ('Rated 4.0', 'RATED\n  A Saturday night chill place, had a couple of freshly brewed beers, ordered Pizzas and Pasta. The beer was good, the food was good too! Loved the burger! The ambience is rustic and very appealing, crowd is good too.\n\nIn terms of service there was a little hesitation, but I give the management the benefit of doubt as on the same Saturday night they had a private party and it was a bee hive.\n\nAll in all a great place. Untill next time, cheers! :)'), ('Rated 4.0', 'RATED\n  A good place for a birthday party. Good DJ and amazing ambience. I found the 4th floor much better than 3rd so get a place if you can on 4th. The food was good (both veg and non-veg) and staff were helpful. A good experience overall.'), ('Rated 5.0', "RATED\n  Loved the rooftop ambience, despite being situated at the junction of Koramangala, it was away from the hustle of the streets, serene in its own way.\n\nThe food is very nicely cooked and served. The prawns were one of the best I've had.\nNachos and paneer tikka were great too! Bhati ka pom fret fish and amritsari tawa fish were well-cooked and flavored and definitely recommend.\n\nMushroom mac gratin was very comforting and delicious.\nTheir chicken patrani was cooked in banana leaf and had a unique texture and taste.\n\nTried a variety of beers and loved the pale ale and strawberry cider!\nHad the choco lava for dessert and fell in love with it with my first bite. It was definitely one of the best I've had.\n\nMust try-\nChicken patrani\nBhati ka pom fret fish\nChicken/paneer Tikka pizza\nCheese loaded nachos\nMushroom mac gratin\nMolten choco lava cake"), ('Rated 5.0', "RATED\n  The first time I came here the beer was very diluted. But now they've upped their game. Very nice beer with a lot of options. The food as usual is unbelievable. Nothing I can fault on. Going to be my next go to place."), ('Rated 3.0', "RATED\n  Visited this new entry to the list of breweries in Bangalore. We got a table in the balcony, and it was a good experience with respect to ambience. Among the beers, we loved the strawberry cider. The weizen bock was good, but the others can be better. The Smash Libre cocktail was decent, and we loved the Tokyo Tea. The pesto chicken pizza wasn't that good. The crust was a bit hard, the toppings were unimpressive, and it's not as yummy as it sounds. Overall a good place for hanging out with friends, and catching up over drinks. I wouldn't recommend it for foodies."), ('Rated 4.0', 'RATED\n  A good place for a birthday party. Good DJ and amazing ambience. I found the 4th floor much better than 3rd so get a place if you can on 4th. The food was good (both veg and non-veg) and staff were helpful. A good experience overall.'), ('Rated 5.0', "RATED\n  Loved the rooftop ambience, despite being situated at the junction of Koramangala, it was away from the hustle of the streets, serene in its own way.\n\nThe food is very nicely cooked and served. The prawns were one of the best I've had.\nNachos and paneer tikka were great too! Bhati ka pom fret fish and amritsari tawa fish were well-cooked and flavored and definitely recommend.\n\nMushroom mac gratin was very comforting and delicious.\nTheir chicken patrani was cooked in banana leaf and had a unique texture and taste.\n\nTried a variety of beers and loved the pale ale and strawberry cider!\nHad the choco lava for dessert and fell in love with it with my first bite. It was definitely one of the best I've had.\n\nMust try-\nChicken patrani\nBhati ka pom fret fish\nChicken/paneer Tikka pizza\nCheese loaded nachos\nMushroom mac gratin\nMolten choco lava cake"), ('Rated 5.0', "RATED\n  The first time I came here the beer was very diluted. But now they've upped their game. Very nice beer with a lot of options. The food as usual is unbelievable. Nothing I can fault on. Going to be my next go to place."), ('Rated 3.0', "RATED\n  Visited this new entry to the list of breweries in Bangalore. We got a table in the balcony, and it was a good experience with respect to ambience. Among the beers, we loved the strawberry cider. The weizen bock was good, but the others can be better. The Smash Libre cocktail was decent, and we loved the Tokyo Tea. The pesto chicken pizza wasn't that good. The crust was a bit hard, the toppings were unimpressive, and it's not as yummy as it sounds. Overall a good place for hanging out with friends, and catching up over drinks. I wouldn't recommend it for foodies."), ('Rated 4.0', 'RATED\n  My exploration of Koramangala starts with Brooks and Bonds and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s been a good start. Ambience is rustic and pleasant. The brews are good but the food menu seemed limited.\nThe German Wheat is a good brew - light, low level of bitterness. This is a great beer to have with spicy starters.\nFor mocktails, the Voluntar (pineapple base with a touch of spicy tinge) is an excellent recommendation and goes well with warmer starter like the Moroccan Chicken Skewers (juicy and hard is the way I can explain this dish)\nAmritsari Tawa Fish is another good starter; soft and spicy and goes well with the German Wheat.\nChicken Tingdi Masala is a good main course. The chicken leg pieces are soft and juicy. I would recommend this dish with steamed rice.\nTry the seasonal fruit panacota for the dessert.\nA great watering hole with decent food, great ambience and service.'), ('Rated 4.0', "RATED\n  A place for casual hangout, nothing too fancy. Ambiance is average though the brewed drinks were nice. The presentation of the food was great but the food was decent. I didn't find anything bad over there but nothing strikingly good either, so neutral rating from my side. Seemed to me like just another pub for a leisure time with friends while being economic on pockets.\n\nThe staff is really good and service was great. Didn't like the DJ though who dunno why, was playing mostly old songs."), ('Rated 4.0', 'RATED\n  Just visited Brooks and bonds based on the beer reviews. I am all for beer taste rather than ambience and all the three beers. DJ isnt great and we were taken back to shakira times. Like seriously???'), ('Rated 2.0', "RATED\n  I was super excited about this place... Have been wanting to try it since quite long.\nFinally got to go on Wednesday night this week.\nThe place - nicely done. Well lit and had great seating. Is quite spacious too. But the DJ needs to up his ante. Was there until 12:30 and did not hear one song that I wanted to tap my feet on.\nFood - did not really try a lot as I was scared to experiment. So are the basics, fries, jalapeno cheese balls and margarita pizza. Okay.. not great but not bad.\nDrinks - This was a huge bummer. I mean it's a brewery right, and I tried 3 different brews... All of them were quite disappointing. First off, the beers had no body at all, as if there was tonne of water mixed to it. And then the falvour just did not last at all.\nI was really hoping for a great time there and had it not been for the drinks, I would have loved it. Pls guys - work on your brew recepies."), ('Rated 4.0', 'RATED\n  My exploration of Koramangala starts with Brooks and Bonds and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s been a good start. Ambience is rustic and pleasant. The brews are good but the food menu seemed limited.\nThe German Wheat is a good brew - light, low level of bitterness. This is a great beer to have with spicy starters.\nFor mocktails, the Voluntar (pineapple base with a touch of spicy tinge) is an excellent recommendation and goes well with warmer starter like the Moroccan Chicken Skewers (juicy and hard is the way I can explain this dish)\nAmritsari Tawa Fish is another good starter; soft and spicy and goes well with the German Wheat.\nChicken Tingdi Masala is a good main course. The chicken leg pieces are soft and juicy. I would recommend this dish with steamed rice.\nTry the seasonal fruit panacota for the dessert.\nA great watering hole with decent food, great ambience and service.'), ('Rated 4.0', "RATED\n  A place for casual hangout, nothing too fancy. Ambiance is average though the brewed drinks were nice. The presentation of the food was great but the food was decent. I didn't find anything bad over there but nothing strikingly good either, so neutral rating from my side. Seemed to me like just another pub for a leisure time with friends while being economic on pockets.\n\nThe staff is really good and service was great. Didn't like the DJ though who dunno why, was playing mostly old songs."), ('Rated 4.0', 'RATED\n  Just visited Brooks and bonds based on the beer reviews. I am all for beer taste rather than ambience and all the three beers. DJ isnt great and we were taken back to shakira times. Like seriously???'), ('Rated 2.0', "RATED\n  I was super excited about this place... Have been wanting to try it since quite long.\nFinally got to go on Wednesday night this week.\nThe place - nicely done. Well lit and had great seating. Is quite spacious too. But the DJ needs to up his ante. Was there until 12:30 and did not hear one song that I wanted to tap my feet on.\nFood - did not really try a lot as I was scared to experiment. So are the basics, fries, jalapeno cheese balls and margarita pizza. Okay.. not great but not bad.\nDrinks - This was a huge bummer. I mean it's a brewery right, and I tried 3 different brews... All of them were quite disappointing. First off, the beers had no body at all, as if there was tonne of water mixed to it. And then the falvour just did not last at all.\nI was really hoping for a great time there and had it not been for the drinks, I would have loved it. Pls guys - work on your brew recepies."), ('Rated 4.0', "RATED\n  It's good place, Zomoto gold drink partner too, brew their own beer which is okay. Theme seems like a 80,s Bollywood's Rajkumar movie. Food is delactable too and they got a roof top.\nJust didn't understand the concept of usable ?500 cover charge every weekend."), ('Rated 4.0', 'RATED\n  A place if u want to hang out and not spend too much money! They have great varieties of beers and their food is also delicious! Their prawn and mutton starters are awesome ? for their mains, the malabar fish curry with rice is a must try!'), ('Rated 4.0', "RATED\n  Ambience was average. It's seating had two options one in open and one indoor. The indoor looked a little gloomy. So we decided to sit in open but the heat made us back into the AC. There is scope for improvement in comfort and look.\n\nComing to food. I liked the onion ring. The patrani chicken was ok. It could have been nicer of the spices would have blended better, may be the marination needs to increase. The sangria was a little low on the wine but they improved when we asked for it to be reworked.\n\nService was good. The staff was responsive as s attentive.\n\nOverall a good experience."), ('Rated 5.0', 'RATED\n  Ambiance: 5 ?\nThe roof top is to fall in love for.\n\nFood: 5 ?\nMust try:\nChicken Nachos\nChicken Quesadillas\nPizzas\nGerman Beer\n\nStaff: 5 ?\nThey will make you feel like home. Ask for Wango and Ravi for Best services. They will ensure you taste stuff of your own favourite taste.'), ('Rated 4.0', 'RATED\n  The place is quiet crowded on weekends, so you might have to wait but not for long. As name suggest it\'s a brewery, so they offer quiet well fresh beer and my favourite "Belgian wit"?. Beside that it also offers some delicious eateries like pizzas, pasta any many more.\nIt has dance floor too at the very top floor, where you can enjoy the DJ and shake a leg, it\'s not big floor though.'), ('Rated 4.0', "RATED\n  It's good place, Zomoto gold drink partner too, brew their own beer which is okay. Theme seems like a 80,s Bollywood's Rajkumar movie. Food is delactable too and they got a roof top.\nJust didn't understand the concept of usable ?500 cover charge every weekend."), ('Rated 4.0', 'RATED\n  A place if u want to hang out and not spend too much money! They have great varieties of beers and their food is also delicious! Their prawn and mutton starters are awesome ? for their mains, the malabar fish curry with rice is a must try!'), ('Rated 4.0', "RATED\n  Ambience was average. It's seating had two options one in open and one indoor. The indoor looked a little gloomy. So we decided to sit in open but the heat made us back into the AC. There is scope for improvement in comfort and look.\n\nComing to food. I liked the onion ring. The patrani chicken was ok. It could have been nicer of the spices would have blended better, may be the marination needs to increase. The sangria was a little low on the wine but they improved when we asked for it to be reworked.\n\nService was good. The staff was responsive as s attentive.\n\nOverall a good experience."), ('Rated 5.0', 'RATED\n  Ambiance: 5 ?\nThe roof top is to fall in love for.\n\nFood: 5 ?\nMust try:\nChicken Nachos\nChicken Quesadillas\nPizzas\nGerman Beer\n\nStaff: 5 ?\nThey will make you feel like home. Ask for Wango and Ravi for Best services. They will ensure you taste stuff of your own favourite taste.'), ('Rated 4.0', 'RATED\n  The place is quiet crowded on weekends, so you might have to wait but not for long. As name suggest it\'s a brewery, so they offer quiet well fresh beer and my favourite "Belgian wit"?. Beside that it also offers some delicious eateries like pizzas, pasta any many more.\nIt has dance floor too at the very top floor, where you can enjoy the DJ and shake a leg, it\'s not big floor though.'), ('Rated 4.0', 'RATED\n  The experience was great being here, the beers was so good and service was excellent, food was tasty!!! Nice roof top ambiance nice place for party and get together......'), ('Rated 4.0', 'RATED\n  Super cool ambience\nCool service\nTasty food\nAt the centre of city with nice music and crowd\nThe service is very good as well. Zakir served us very well.\nRest room was a hell , not as per their crowd capacity.'), ('Rated 3.0', 'RATED\n  The place in the beginning was quite dull when it newly opened though now it has improved quite alot . The chicken gravys and chicken starters were an impressive dish .'), ('Rated 2.0', "RATED\n  Good Food and drinks. Good Ambience but somewhat spoiled by the poor air conditioning and what's worse was the floor manager refusing to acknowledge it let alone do anything about it.Bill was messed up too, but was rectified once the error was pointed out"), ('Rated 5.0', "RATED\n  It is a great and a lively place to hangout with friends.!!\nA lot of things to love about this place.\nThe ambiance\nThe interiors.\nThe beer.\nThe food..\nAlso, the service.\n\nIn my 2 visits, I had a wonderful time with friends.\nCan't wait to come here again."), ('Rated 4.0', 'RATED\n  The experience was great being here, the beers was so good and service was excellent, food was tasty!!! Nice roof top ambiance nice place for party and get together......'), ('Rated 4.0', 'RATED\n  Super cool ambience\nCool service\nTasty food\nAt the centre of city with nice music and crowd\nThe service is very good as well. Zakir served us very well.\nRest room was a hell , not as per their crowd capacity.'), ('Rated 3.0', 'RATED\n  The place in the beginning was quite dull when it newly opened though now it has improved quite alot . The chicken gravys and chicken starters were an impressive dish .'), ('Rated 2.0', "RATED\n  Good Food and drinks. Good Ambience but somewhat spoiled by the poor air conditioning and what's worse was the floor manager refusing to acknowledge it let alone do anything about it.Bill was messed up too, but was rectified once the error was pointed out"), ('Rated 5.0', "RATED\n  It is a great and a lively place to hangout with friends.!!\nA lot of things to love about this place.\nThe ambiance\nThe interiors.\nThe beer.\nThe food..\nAlso, the service.\n\nIn my 2 visits, I had a wonderful time with friends.\nCan't wait to come here again."), ('Rated 4.0', "RATED\n  It happens very often with me that I deviate from my actual plan and land up somewhere else in the end but I m very happy that I get to explore such places. So as usual it was a sudden plan and I picked this place. Place is a multi storey restaurant and holds both smoking and non smoking area. We were just directed to smoking area but when we asked for a change they gave us a table inside. Our overall dine included-\nCheese loaded nachos\nFrench fries\nHummus beiruti\nFresh green salad\nPaneer Kati roll and in dessert\nSeasonal fruit panacotta\nMolten lava cake\nIf we talk about the details of above ones salad was nothing but the ones we prepare at home. Hummus was exceptionally good and even bread was fresh. It was so filling. Nachos and fries was as usual and so does the roll. I loved my desserts and will recommend you to give it a try. Staff was polite but as long as I was sitting in smoking zone I felt they were not so attentive. It's a pocket friendly option for food lovers."), ('Rated 4.0', "RATED\n  If Freshly Brewed Beer and Yummy starters is your thing, head to Brooks and Bonds!\n\nCentrally located and finally a brewery in Kormangala that doesn't feel cramped up, they've got 3 floors of seating!\nHad been here on a weekend and the only disappointment was the service. \nThey've got a huge variety of food. I mean you can order pizzas, wraps and dal tadka on the same table :P\nAlso if you are a Zomato Gold user, they offer 2+2 on Drinks! Thats a steal.\nI'd rate it \n\nAmbience: 7/10\n\nFood : 8/10\n.\nService: 6/10\n.\n\nValue for Money : 8/10."), ('Rated 4.0', 'RATED\n  I think Brooks and Bonds brewery is our new favorite in Koramangala now. The place offers some very enjoyable brews and delicious grub. It is located on 100 feet road in Koramangala and is spread across multiple floors. ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s plenty of seating available and the outdoor sections get a pleasant breeze. Decor is simple and laid back with basic wood and iron furniture and some funny quips on the stairways. ...\nRead full post on hungrypandadiaries.wordpress.com'), ('Rated 2.0', "RATED\n  Overtly sweet cocktails, the roof top was meh, it looked like any other place - no real character to the place, the nachos were some weird type and seemed oily, the chicken pizza was definitely undercooked... I wouldn't recommend this place. And they didn't have the drinks we wanted to order to begin with. No coconut rum and coffee liqueur was available. Meh experience."), ('Rated 5.0', "RATED\n  This place has always been on my list and I visited last weekend!\nCan't believe weekend is almost here..\nAmbiance is super cool. I came with a friend and now I am planning to come with my entire gang...\nGood beer!!!\n\nMy overall experience here was very nice.\nLooking forward to visiting them again super soon."), ('Rated 3.0', 'RATED\n  Nice ambience but the staff are not attentive. to make a order I had to call them for so many times. The new starberry beer looks like orange n doenst taste like strawberry'), ('Rated 4.0', 'RATED\n  Aptly located in one of the prime locations of Koramangala and living up to the competition! Good brew and good food! DJ is alright and the management is very helpful!\n\nsriparnasthoughts.com'), ('Rated 4.0', "RATED\n  GO DURING HAPPY HOURS ?\nI'm not much of a drinker so I ordered for a German Blonde (the menu on the app has to be updated for the brewers) and I loved it.\nFood 3.5 stars\nAmbience 3.5 stars\nService 3.5 stars\nOne food item that stood out was the BROWNIE. Try it."), ('Rated 4.0', 'RATED\n  The place might not have the fanciest of ambiences, but serves great food. Totally vouch for their beef dishes, especially the chilly beef pizza, never had anything close to this in the entire Bangalore city.\nThe service was on point and so were the courteous staff.'), ('Rated 5.0', "RATED\n  This place has always been on my list and I visited last weekend!\nCan't believe weekend is almost here..\nAmbiance is super cool. I came with a friend and now I am planning to come with my entire gang...\nGood beer!!!\n\nMy overall experience here was very nice.\nLooking forward to visiting them again super soon."), ('Rated 3.0', 'RATED\n  Nice ambience but the staff are not attentive. to make a order I had to call them for so many times. The new starberry beer looks like orange n doenst taste like strawberry'), ('Rated 4.0', 'RATED\n  Aptly located in one of the prime locations of Koramangala and living up to the competition! Good brew and good food! DJ is alright and the management is very helpful!\n\nsriparnasthoughts.com'), ('Rated 4.0', "RATED\n  GO DURING HAPPY HOURS ?\nI'm not much of a drinker so I ordered for a German Blonde (the menu on the app has to be updated for the brewers) and I loved it.\nFood 3.5 stars\nAmbience 3.5 stars\nService 3.5 stars\nOne food item that stood out was the BROWNIE. Try it."), ('Rated 4.0', 'RATED\n  The place might not have the fanciest of ambiences, but serves great food. Totally vouch for their beef dishes, especially the chilly beef pizza, never had anything close to this in the entire Bangalore city.\nThe service was on point and so were the courteous staff.'), ('Rated 5.0', "RATED\n  I just loved this place. Their ambiance is also awesome. Their lights , sitting and everything.\nIt's spacious with good amount of tables spread perfectly. The decor is really nice. I came here with my best friend and we had a great time.\nLike we ate we drank we listened to good music etc!\nStaff too are very well behaved."), ('Rated 4.0', "RATED\n  The name resonates because of its similarity with a age old popular brand. The first level isn't anything to really talk about, the inner area is dim lighted with a bar and looks a little dingy. The upper levels though, are excellent. The open air area and end terrace, especially the terrace, is beautiful. They do have some good non veg starters and there drinks are priced reasonably. If you're looking for a place beyond Gilly's this place will not disappoint. The service is decent for the crowd it pulls in. The music is pretty good too."), ('Rated 3.0', 'RATED\n  Was looking for a place near Sony junction and found this place on Zomato. Went with mates mid week for some beers and food and had a decent evening. On the top floor there is an indoor area but clearly the preferred place is the outdoor which is where we sat. Tried the beer sampler and zeroed on a couple of beers which were good. The food isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t bad either and the service is alright as well. Overall itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a regular pub establishment like many in Bangalore, good for a drink and a laugh with friends.'), ('Rated 5.0', 'RATED\n  We have been coming to this brewery for a long time and I must say that food is good and drinks are economical. They keep bringing in new varieties of Brewed drinks and are quick with service!'), ('Rated 4.0', 'RATED\n  I love this place. ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s absolutely fantastic. Their brewed beers are excellent, their food is extremely well made. The service is great, ambience is really nice. CanÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t really fault this place with anything! A must-visit.'), ('Rated 5.0', 'RATED\n  This is one place you donÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t wanna miss out on if you are in Koramangala. This place has great service, good food and awesome fresh brewed beers (one of the best I have tasted so far).. great job team BNB.\nComing to the food, we ordered for a lotta stuff and everything tasted amazing and went along well with our drinks. My recommendation is - crazy peanuts, murg tikka and the chk steak.\nDrinks were amazing and they are really cool at brewing there fresh beer. Peace to my thirsty soul. My recommendation - mango madness, strawberry cider, Dunkel weizen, Mexican lager..\n\nHighly recommend this place. Must visit. Cheers guys. ?'), ('Rated 2.0', 'RATED\n  Good beers and decent food . But found a non veg piece in my masala fries . Reported to server who mentioned to managers there but no one came once to enquire / apologise . Not worth a second visit .'), ('Rated 5.0', 'RATED\n  Nice place to visit with friends. Nice beer and enjoyed ourselves!! The place is cozy and makes you comfortable instantously. Would recommend everyone !!'), ('Rated 5.0', 'RATED\n  Worth going ! Barged with an old friend as he visited Bangalore! Tried their sampler as complementary (Check dineout for amazing offers) and then their pale ale and wheat beer is fab ! Must pay a visit !'), ('Rated 4.0', 'RATED\n  Beer is great and so is the ambience\nHowever the starters are overpriced and the taste is average.\nService is average\nThe view from the rooftop is beautiful and perfect for Sunday drinks with the gang'), ('Rated 3.0', 'RATED\n  Food and drinks are good. The place is amazing and gives you a view of the city.. the waiters are however very arrogant.. food takes a long time to be served. Be prepared to wait for atleast 30-40 mins even for one dish.'), ('Rated 4.0', "RATED\n  It's was a nice place great beer and starters pizza was nice freindly staff good music beef burger must have and choco lava cake was too good and the Irish beer was great"), ('Rated 4.0', 'RATED\n  Lovely place, wonderful ambience on the rooftop. They have a good array of brewed beers. Food can be better. Overall decent hangout with a bunch of friends'), ('Rated 4.0', 'RATED\n  Big space - 3 floors including roof top. If you dont like loud music, go for the roof top. Belgian Wit wasnt available so we tried German Wheat and DunkelWeizz (Stout). I liked the Stout better. You get 575 ml for 260 which is sweet.\nMore than drinks I liked appetizers. Tried Moroccan Chicken skewers and Amritsari Tawa fish. Both well prepared. 500 per person cover charges on Fridays and weekends which I believe is very reasonable.'), ('Rated 1.0', 'RATED\n  Half star for the service. The name written on the cake that we ordered was incorrect despite giving a written message. Food almost never came.'), ('Rated 4.0', 'RATED\n  We visited this place on a Friday night. It was super crowded and there was a cover charge of Rs 500 per person (which can be recovered as food/drink coupons)\nThe beer is good, the food is tasty. Couple of beers, a starter and a pizza costed us Rs 1.5k for three ppl all thanks to Zomato Gold'), ('Rated 5.0', "RATED\n  Great place to chill the hell out. It's in the heart of the city and their beer is awesome. Have visited it on multiple occasions. Their whiskey sour was not good this time but let's not generalize the place based on one drink. Still a great place with a great roof-top.\n\nCaptain Ravi served us this time and I must say he did an awesome job serving us!"), ('Rated 4.0', 'RATED\n  The most happening place BROOKS AND BONDS BREWERY has decent and nice ambience. The view from this place was so peaceful, they have indoor and out door seating. The staff are friendly and responses quickly but service depends on the crowd in place. Here brewery beers are very different impressed with it. The food also tasted good.\nMust try there brewery.\nNachos tasted awesome, peanut masala where peanuts were too hard to bite, pasta was at its best and mushrooms were nice.'), ('Rated 4.0', 'RATED\n  Koramangala is becoming a go to place for breweries, with not less than 5 breweries within a radius of 500 meters. The competition is hard core.\nAnyway, 4 of us were sitting on the roof top and the ambience was lively. Indeed it was crowded and the staff were swift with the orders. The beer was decent, I personally liked the Belgiun Wit. The stout was strong for my taste.The food portion were generous and quite tasty. Good place to hang out on a saturday evening. Ensure you come in early, cause this place gets crowded.\nPS: They also have a dance floor.'), ('Rated 1.0', 'RATED\n  Half star for the service. The name written on the cake that we ordered was incorrect despite giving a written message. Food almost never came.'), ('Rated 4.0', 'RATED\n  We visited this place on a Friday night. It was super crowded and there was a cover charge of Rs 500 per person (which can be recovered as food/drink coupons)\nThe beer is good, the food is tasty. Couple of beers, a starter and a pizza costed us Rs 1.5k for three ppl all thanks to Zomato Gold'), ('Rated 5.0', "RATED\n  Great place to chill the hell out. It's in the heart of the city and their beer is awesome. Have visited it on multiple occasions. Their whiskey sour was not good this time but let's not generalize the place based on one drink. Still a great place with a great roof-top.\n\nCaptain Ravi served us this time and I must say he did an awesome job serving us!"), ('Rated 4.0', 'RATED\n  The most happening place BROOKS AND BONDS BREWERY has decent and nice ambience. The view from this place was so peaceful, they have indoor and out door seating. The staff are friendly and responses quickly but service depends on the crowd in place. Here brewery beers are very different impressed with it. The food also tasted good.\nMust try there brewery.\nNachos tasted awesome, peanut masala where peanuts were too hard to bite, pasta was at its best and mushrooms were nice.'), ('Rated 4.0', 'RATED\n  Koramangala is becoming a go to place for breweries, with not less than 5 breweries within a radius of 500 meters. The competition is hard core.\nAnyway, 4 of us were sitting on the roof top and the ambience was lively. Indeed it was crowded and the staff were swift with the orders. The beer was decent, I personally liked the Belgiun Wit. The stout was strong for my taste.The food portion were generous and quite tasty. Good place to hang out on a saturday evening. Ensure you come in early, cause this place gets crowded.\nPS: They also have a dance floor.'), ('Rated 5.0', 'RATED\n  I love the ambience and the vibe. Wango (our waiter) made the whole experience more enjoyable. Thank you, brooks and bonds ! The food and ambience are really worth the visit. Be sure to book a table in advance. Thank you !'), ('Rated 2.0', 'RATED\n  Visited the place to try their brews on a weekday evening. The brewed beers were good , although a lot can be improved with their food . Had ordered the seasonal fries basket,Chicken wings and Chicken Quesedilla and all of these were just ok-ish . What disappointed us the most was the service and the quality of cocktails which were watered down after the first couple of drinks , pointing out the issue with the manager didnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t help either . This just spoiled a rather good evening that we were having . DidnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t hang around too long after this . You can although visit the place for their brews .\nFood :2/5\nBeer:4/5\nCocktails:2/5\nService:2/5\nAmbience:3/5'), ('Rated 5.0', 'RATED\n  Had a nice experience here on a sunday evening.\nFood was 5/5 . Ambience 5/5 . Music 4/5.\nOnly I would suggest to give trainings to few waiters but overall it was all good.'), ('Rated 3.0', 'RATED\n  Went here on a Saturday afternoon and place was reasonably crowded. Located just on the side of the 100 feet road of Koramangala 5 block, the place is a microbrewery. There is an indoor seating area but most people were on the outdoor space because, for me, the indoor area is kind of dim lighted for my liking. Coming to the beer, we tried Belgian Ale and Dunkelweiss. The Belgian Ale was light and with just a slight bitter aftertaste. However, the Dunkelweiss was a letdown. The top note just overpowered the entire taste and I did not like it at all.\nThe French Fries were similar to the French Fries served at every pub but could have been served with at least two sauces instead of the same old boring tomato ketchup.\nIn spite of the place being crowded, the service was efficient and the ambience was good. The rooftop opens only at 8 pm though.'), ('Rated 3.0', 'RATED\n  Stuck around for 20 minutes before finding a table here on a Saturday. The DJ started off a bit too firangi but soon moved to BollyPunjabi. Gold subscription paid off! The food is averageish. Definitely adding it to my bar hopping list.'), ('Rated 5.0', 'RATED\n  The Staff is super Nice, Belgium Wit is the best.\nAll the crafted beers are unique and nice. Would definitely visit the place again\n\nAnd the Service by Reuben is first class.\n\n.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
Good food. The pepper chicken and Parota combo was delicious and the food got delivered on time. This place has some great flavours. Would definitely revisit.'), ('Rated 3.0', 'RATED\n  Kappa biriyani is oily but tasty. they must use lesser oil since it spoils the whole food.'), ('Rated 3.0', 'RATED\n  Quality is not as expected'), ('Rated 4.0', 'RATED\n  Tasty food... everything we tried was very good.\nGood and clean sitting arrangement,\nReasonable and pocket friendly price...\nStaff was a bit quiet tho.'), ('Rated 1.0', 'RATED\n  chicken vindaloo was horrible.beef masala was good and beef chilly was salty'), ('Rated 3.0', 'RATED\n  Curries were either very salty or no salt at all'), ('Rated 3.0', 'RATED\n  Try their pork roast. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s damn good!Ambience is a bit dim, but man, Their pork roast!!! We had the dish three days in a row. The third time it was a bit off. So donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t give up on the dish if itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s not great once. Go back and try again. Trust me, Pork Roast is GOOD.'), ('Rated 5.0', "RATED\n  Great food. Service is also very nice. Special mention that owner himself looks after the Customers. That's really awesome of him. Lot of varieties"), ('Rated 1.0', "RATED\n  We ordered from this place yesterday afternoon and we are simply aghast with the two fish curries they sent. Boiled water with chili powder. I have no doubt in my mind that this is the worst kind of food that I have eaten in my life. Surprisingly we love Kerala cuisine and after this I don't know if we would be able to eat fish outside.\nI will make sure that none of my friends and relatives ever order from this joint or dare to visit this third grade eatery who has no regard for someone's health or at least to be considerate of the fact that its supposed to be food that you are serving.\nTo the owners of this place if you are unaware of how your food and services are please pay attention immediately."), ('Rated 3.5', "RATED\n  It's one of the days where you see the closed note from outside and still get inside to checkout and turns out it's open.\n\nVery decent place with above average taste and serves good food. Having competition almost with every second shop, Kerala vibes is located in main road of jeevan bhima nagar one of the places to try to enjoy peaceful lunch. Enjoyed veg meals served in banana leaf and curries served in beautiful mud pots. Hopefully a place you won't walk out with regrets."), ('Rated 1.0', 'RATED\n  The order was cancelled by the restaurant'), ('Rated 4.0', 'RATED\n  I just loved the taste. Either the meat or the tapioca wasnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t mushy. I felt it was a lil oily. They could have sprinkled a lil more onions though!! A must try,kappa biriyani!'), ('Rated 5.0', 'RATED\n  Despite an item mismatch, correct order was re-delivered by the restaurant'), ('Rated 1.0', 'RATED\n  The food was not fresh. Had to throw it away.'), ('Rated 1.0', 'RATED\n  Delivered wrong dish - incompetency vibes. The dish delivered reeked of poor conception and stale oil to boot- health hazard vibes. Not getting Kerala vibes.'), ('Rated 3.0', 'RATED\n  pork was only fat. no meat.'), ('Rated 5.0', 'RATED\n  Being a Keralite out of the state, I crave for the authentic flavours and spices. Kerala Vibes has the right fare to satiate my pangs. Every item in their menu, is exciting and extremely inviting. I feel right back at home, each time I try a different offer from the menu.'), ('Rated 4.5', "RATED\n  A hidden treasure in Jeevan Bheema Nagar. If your taste buds tingle to Kerala cuisine, then Kerala Vibes is a must try. The meals are delicious and elaborate, and you must have it at the restaurant. The Biriyanis (prawns, meat and chicken) have a unique flavor, unlike any other I've had in the recent past. The menu offers a spread of surprises to try out and each dish is exquisite by itself."), ('Rated 1.0', 'RATED\n  The food was not fresh. Had to throw it away.'), ('Rated 1.0', 'RATED\n  Delivered wrong dish - incompetency vibes. The dish delivered reeked of poor conception and stale oil to boot- health hazard vibes. Not getting Kerala vibes.'), ('Rated 3.0', 'RATED\n  pork was only fat. no meat.'), ('Rated 5.0', 'RATED\n  Being a Keralite out of the state, I crave for the authentic flavours and spices. Kerala Vibes has the right fare to satiate my pangs. Every item in their menu, is exciting and extremely inviting. I feel right back at home, each time I try a different offer from the menu.'), ('Rated 4.5', "RATED\n  A hidden treasure in Jeevan Bheema Nagar. If your taste buds tingle to Kerala cuisine, then Kerala Vibes is a must try. The meals are delicious and elaborate, and you must have it at the restaurant. The Biriyanis (prawns, meat and chicken) have a unique flavor, unlike any other I've had in the recent past. The menu offers a spread of surprises to try out and each dish is exquisite by itself."), ('Rated 1.0', 'RATED\n  The food was not fresh. Had to throw it away.'), ('Rated 1.0', 'RATED\n  Delivered wrong dish - incompetency vibes. The dish delivered reeked of poor conception and stale oil to boot- health hazard vibes. Not getting Kerala vibes.'), ('Rated 3.0', 'RATED\n  pork was only fat. no meat.'), ('Rated 5.0', 'RATED\n  Being a Keralite out of the state, I crave for the authentic flavours and spices. Kerala Vibes has the right fare to satiate my pangs. Every item in their menu, is exciting and extremely inviting. I feel right back at home, each time I try a different offer from the menu.'), ('Rated 4.5', "RATED\n  A hidden treasure in Jeevan Bheema Nagar. If your taste buds tingle to Kerala cuisine, then Kerala Vibes is a must try. The meals are delicious and elaborate, and you must have it at the restaurant. The Biriyanis (prawns, meat and chicken) have a unique flavor, unlike any other I've had in the recent past. The menu offers a spread of surprises to try out and each dish is exquisite by itself."), ('Rated 4.5', 'RATED\n  Kerala style porotta and beef fry very taste in kerala vibe restaurant. Chapatti and chicken kebab is a nice competition .and gud staff and neet ..'), ('Rated 4.5', 'RATED\n  I think all keralite in banglore should try with them.. They have a real taste of kerala food.. Especially beef and fish items keep up the good work guys. Good luck'), ('Rated 2.0', 'RATED\n  Biriyani was awful'), ('Rated 5.0', 'RATED\n  Very nice food and very tastefull.\nFood is for eating, and good food is to be enjoyed... I think food is, actually, very beautiful in itself.'), ('Rated 5.0', "RATED\n  I visited this restaurant ,so delicious Kerala fuds are available here .They served fud in banana leafs and pots.I tasted Kerala Kerala porotta and beef fry it's so gud.l suggest all , atleast once to visit the restaurant"), ('Rated 4.5', 'RATED\n  Kerala style porotta and beef fry very taste in kerala vibe restaurant. Chapatti and chicken kebab is a nice competition .and gud staff and neet ..'), ('Rated 4.5', 'RATED\n  I think all keralite in banglore should try with them.. They have a real taste of kerala food.. Especially beef and fish items keep up the good work guys. Good luck'), ('Rated 2.0', 'RATED\n  Biriyani was awful'), ('Rated 5.0', 'RATED\n  Very nice food and very tastefull.\nFood is for eating, and good food is to be enjoyed... I think food is, actually, very beautiful in itself.'), ('Rated 5.0', "RATED\n  I visited this restaurant ,so delicious Kerala fuds are available here .They served fud in banana leafs and pots.I tasted Kerala Kerala porotta and beef fry it's so gud.l suggest all , atleast once to visit the restaurant"), ('Rated 4.5', 'RATED\n  Kerala style porotta and beef fry very taste in kerala vibe restaurant. Chapatti and chicken kebab is a nice competition .and gud staff and neet ..'), ('Rated 4.5', 'RATED\n  I think all keralite in banglore should try with them.. They have a real taste of kerala food.. Especially beef and fish items keep up the good work guys. Good luck'), ('Rated 2.0', 'RATED\n  Biriyani was awful'), ('Rated 5.0', 'RATED\n  Very nice food and very tastefull.\nFood is for eating, and good food is to be enjoyed... I think food is, actually, very beautiful in itself.'), ('Rated 5.0', "RATED\n  I visited this restaurant ,so delicious Kerala fuds are available here .They served fud in banana leafs and pots.I tasted Kerala Kerala porotta and beef fry it's so gud.l suggest all , atleast once to visit the restaurant"), ('Rated 5.0', 'RATED\n  One of the best kerala restaurant in banglore city....iam so happy to visit there & also suggesting all to try the dishes.They are serving fud in banana leaf & pots ....'), ('Rated 4.5', "RATED\n  Definitely a place to visit and crave for food Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\nAmazing food and the very friendly staff members!\nThe one thing I'd suggest is too change the map directions which the hotel have provided to Zomato or Zomato's direction to the place as its wrong.\nIt took us approx 45mins to reach the place.\nApart from it you guys are doing great!\nCheers!"), ('Rated 5.0', 'RATED\n  Fast time I try in Kerala vibes restaurant. I order pork fry and pork Roast both are test wayes very good. And service also excellent . We are spcely like server Mr. Faran, how way he serving food. Mr. Faran good job keep it up. I will visit again for testing other foods.\nMoni'), ('Rated 5.0', "RATED\n  It was a great experience..nice restaurant..with a great taste and quality of food... variety of Kerala dishes..I'm staying away from my home this time I felt a nostalgic feeling of my homely food.."), ('Rated 5.0', 'RATED\n  I had tried some fish items from here and they were all excellent,real Kerala taste,and they have a good service too..I suggest every South Indians should try them,they have a real taste of kerala'), ('Rated 5.0', 'RATED\n  One of the best kerala restaurant in banglore city....iam so happy to visit there & also suggesting all to try the dishes.They are serving fud in banana leaf & pots ....'), ('Rated 4.5', "RATED\n  Definitely a place to visit and crave for food Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\nAmazing food and the very friendly staff members!\nThe one thing I'd suggest is too change the map directions which the hotel have provided to Zomato or Zomato's direction to the place as its wrong.\nIt took us approx 45mins to reach the place.\nApart from it you guys are doing great!\nCheers!"), ('Rated 5.0', 'RATED\n  Fast time I try in Kerala vibes restaurant. I order pork fry and pork Roast both are test wayes very good. And service also excellent . We are spcely like server Mr. Faran, how way he serving food. Mr. Faran good job keep it up. I will visit again for testing other foods.\nMoni'), ('Rated 5.0', "RATED\n  It was a great experience..nice restaurant..with a great taste and quality of food... variety of Kerala dishes..I'm staying away from my home this time I felt a nostalgic feeling of my homely food.."), ('Rated 5.0', 'RATED\n  I had tried some fish items from here and they were all excellent,real Kerala taste,and they have a good service too..I suggest every South Indians should try them,they have a real taste of kerala'), ('Rated 5.0', 'RATED\n  One of the best kerala restaurant in banglore city....iam so happy to visit there & also suggesting all to try the dishes.They are serving fud in banana leaf & pots ....'), ('Rated 4.5', "RATED\n  Definitely a place to visit and crave for food Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\nAmazing food and the very friendly staff members!\nThe one thing I'd suggest is too change the map directions which the hotel have provided to Zomato or Zomato's direction to the place as its wrong.\nIt took us approx 45mins to reach the place.\nApart from it you guys are doing great!\nCheers!"), ('Rated 5.0', 'RATED\n  Fast time I try in Kerala vibes restaurant. I order pork fry and pork Roast both are test wayes very good. And service also excellent . We are spcely like server Mr. Faran, how way he serving food. Mr. Faran good job keep it up. I will visit again for testing other foods.\nMoni'), ('Rated 5.0', "RATED\n  It was a great experience..nice restaurant..with a great taste and quality of food... variety of Kerala dishes..I'm staying away from my home this time I felt a nostalgic feeling of my homely food.."), ('Rated 5.0', 'RATED\n  I had tried some fish items from here and they were all excellent,real Kerala taste,and they have a good service too..I suggest every South Indians should try them,they have a real taste of kerala'), ('Rated 5.0', 'RATED\n  Great food . The Kerala parotta was layered and soft. Beef  roast was nice and spicy and had a hint of coconut. Karimeen polichadu was great and flavorful. Chicken  biriyani was good as well, the rice was very flavorful and the chicken was tender. Service was pretty good and staff were helpful. Ambiance in the restaurant was good and the atmosphere was cozy.'), ('Rated 4.5', 'RATED\n  I never thought of writing a comment in a website regarding food . Being a malayali , I should share my experience here because it would be helpful to catch good dine restaurants to  many of my friends who is staying far from home town . I had a chance to experience fish curry and kappa . it was awesome and they served in a unique manner . I tried some  of fish dishes . taste of each dish is unique and mouth-watering . Keep up good and neat food  \n\nNote: yet to taste other items .'), ('Rated 2.0', 'RATED\n  The fish in the fish curry was bad.\nfish fry had neither salt nor spice in it.'), ('Rated 1.0', 'RATED\n  very bad'), ('Rated 5.0', 'RATED\n  Good..delivered on time'), ('Rated 5.0', 'RATED\n  Great food . The Kerala parotta was layered and soft. Beef  roast was nice and spicy and had a hint of coconut. Karimeen polichadu was great and flavorful. Chicken  biriyani was good as well, the rice was very flavorful and the chicken was tender. Service was pretty good and staff were helpful. Ambiance in the restaurant was good and the atmosphere was cozy.'), ('Rated 4.5', 'RATED\n  I never thought of writing a comment in a website regarding food . Being a malayali , I should share my experience here because it would be helpful to catch good dine restaurants to  many of my friends who is staying far from home town . I had a chance to experience fish curry and kappa . it was awesome and they served in a unique manner . I tried some  of fish dishes . taste of each dish is unique and mouth-watering . Keep up good and neat food  \n\nNote: yet to taste other items .'), ('Rated 2.0', 'RATED\n  The fish in the fish curry was bad.\nfish fry had neither salt nor spice in it.'), ('Rated 1.0', 'RATED\n  very bad'), ('Rated 5.0', 'RATED\n  Good..delivered on time'), ('Rated 1.0', 'RATED\n  bad experience today..i got egg burji instead of egg chilly..that also made with bad oil'), ('Rated 2.0', "RATED\n  take away dinner. I asked them 3-4 times about what dough they had used to make poratta, the answer was wheat. but it wasn't the case - it was the same universal kerala poratta made of maida. the mackeral curry was full of oil, lot of chilly in the floating oil and half-cooked fish."), ('Rated 1.0', 'RATED\n  Very disappointed by the delivery and food quality. 2 curries were spoiled.'), ('Rated 5.0', 'RATED\n  delivered in a good way.\nbefore receiving I raised concerns, but he delivered correct time.\nthanks'), ('Rated 5.0', "RATED\n  This is a new restaurant in the city. I had meals and biriyani many times and the taste is awesome... Good ambience...\nYou will get authentic Kerala pork dishes here.\n\nOne thing which I noticed is, they used to make porotta and chapathi in the restaurant itself. Most of the restaurants use ready to serve chapathi and porotta instead.\n\nIt's managed by group of youngsters and they are doing a great job for the foodies around Indira nagar area.\n\nKudos to the team, keep going..."), ('Rated 1.0', 'RATED\n  bad experience today..i got egg burji instead of egg chilly..that also made with bad oil'), ('Rated 2.0', "RATED\n  take away dinner. I asked them 3-4 times about what dough they had used to make poratta, the answer was wheat. but it wasn't the case - it was the same universal kerala poratta made of maida. the mackeral curry was full of oil, lot of chilly in the floating oil and half-cooked fish."), ('Rated 1.0', 'RATED\n  Very disappointed by the delivery and food quality. 2 curries were spoiled.'), ('Rated 5.0', 'RATED\n  delivered in a good way.\nbefore receiving I raised concerns, but he delivered correct time.\nthanks'), ('Rated 5.0', "RATED\n  This is a new restaurant in the city. I had meals and biriyani many times and the taste is awesome... Good ambience...\nYou will get authentic Kerala pork dishes here.\n\nOne thing which I noticed is, they used to make porotta and chapathi in the restaurant itself. Most of the restaurants use ready to serve chapathi and porotta instead.\n\nIt's managed by group of youngsters and they are doing a great job for the foodies around Indira nagar area.\n\nKudos to the team, keep going..."), ('Rated 1.0', 'RATED\n  bad experience today..i got egg burji instead of egg chilly..that also made with bad oil'), ('Rated 2.0', "RATED\n  take away dinner. I asked them 3-4 times about what dough they had used to make poratta, the answer was wheat. but it wasn't the case - it was the same universal kerala poratta made of maida. the mackeral curry was full of oil, lot of chilly in the floating oil and half-cooked fish."), ('Rated 1.0', 'RATED\n  Very disappointed by the delivery and food quality. 2 curries were spoiled.'), ('Rated 5.0', 'RATED\n  delivered in a good way.\nbefore receiving I raised concerns, but he delivered correct time.\nthanks'), ('Rated 5.0', "RATED\n  This is a new restaurant in the city. I had meals and biriyani many times and the taste is awesome... Good ambience...\nYou will get authentic Kerala pork dishes here.\n\nOne thing which I noticed is, they used to make porotta and chapathi in the restaurant itself. Most of the restaurants use ready to serve chapathi and porotta instead.\n\nIt's managed by group of youngsters and they are doing a great job for the foodies around Indira nagar area.\n\nKudos to the team, keep going..."), ('Rated 1.0', 'RATED\n  chewy beef pieces'), ('Rated 5.0', 'RATED\n  very good'), ('Rated 4.5', 'RATED\n  Ultimate... just pitched today in to this new Kerala restaurant... very good Kerala dishes.. mouthwatering beef roast, porota and biriyani.........'), ('Rated 1.0', 'RATED\n  I had kerala food mulitple times before but i think this was the worst of all. Kebabs became pakoras. Biriyani tasted like plain rice sprinkled with chilis. And the loud music. It adds more chilis to the experience i feel.'), ('Rated 1.0', 'RATED\n  chewy beef pieces'), ('Rated 5.0', 'RATED\n  very good'), ('Rated 4.5', 'RATED\n  Ultimate... just pitched today in to this new Kerala restaurant... very good Kerala dishes.. mouthwatering beef roast, porota and biriyani.........'), ('Rated 1.0', 'RATED\n  I had kerala food mulitple times before but i think this was the worst of all. Kebabs became pakoras. Biriyani tasted like plain rice sprinkled with chilis. And the loud music. It adds more chilis to the experience i feel.'), ('Rated 1.0', 'RATED\n  chewy beef pieces'), ('Rated 5.0', 'RATED\n  very good'), ('Rated 4.5', 'RATED\n  Ultimate... just pitched today in to this new Kerala restaurant... very good Kerala dishes.. mouthwatering beef roast, porota and biriyani.........'), ('Rated 1.0', 'RATED\n  I had kerala food mulitple times before but i think this was the worst of all. Kebabs became pakoras. Biriyani tasted like plain rice sprinkled with chilis. And the loud music. It adds more chilis to the experience i feel.'), ('Rated 1.0', 'RATED\n  Definition of everything is different, kabab looks and feels like pakora , nit to mention the fact that they are oblivious of the saying " kabab mein haddi" since the pieces have more bone than flesh.\n\nBiriyani is sweet rice with spicy masala added.\nParatha is something which isnt abailable during lunch.\n\nSo if you happen to drop by, walk out or don\'t order biriyani and kabab and you possibly won\'t have parathas, so better to walk out.'), ('Rated 3.0', 'RATED\n  No banana leaf as specified'), ('Rated 5.0', 'RATED\n  Best authentic kerala food...best fish dishes in town...good service...great ambience...a must try for all kerala cuisine lovers...would love to visit again....'), ('Rated 5.0', 'RATED\n  One of the best place in blore to have Kerala food .\nMust try the sea foods... Good service too...One thing to notice here is that the meals are served on banana leaf which is a kerala tradition , just love that thing about them Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c Will visit again.'), ('Rated 4.0', 'RATED\n  Newest in the city. Last month only its started operated. Its a mallu restaurant , running by young peoples who are from allepey. When i visited that time no one wrote a single review or posted any single food photo in zomato page. But i thought of experimenting , blindly ordered the veg meals, the customer service was awesome . The presentation of all foods in unique way. They giving on banana leaf and curries in mud pots. I tried two three times. Tried kerala porotta, nice porotta n egg curry comparing nearby areas. Must go place if you craving for authentic kerala dishes. Try fish menus'), ('Rated 1.0', 'RATED\n  Definition of everything is different, kabab looks and feels like pakora , nit to mention the fact that they are oblivious of the saying " kabab mein haddi" since the pieces have more bone than flesh.\n\nBiriyani is sweet rice with spicy masala added.\nParatha is something which isnt abailable during lunch.\n\nSo if you happen to drop by, walk out or don\'t order biriyani and kabab and you possibly won\'t have parathas, so better to walk out.'), ('Rated 3.0', 'RATED\n  No banana leaf as specified'), ('Rated 5.0', 'RATED\n  Best authentic kerala food...best fish dishes in town...good service...great ambience...a must try for all kerala cuisine lovers...would love to visit again....'), ('Rated 5.0', 'RATED\n  One of the best place in blore to have Kerala food .\nMust try the sea foods... Good service too...One thing to notice here is that the meals are served on banana leaf which is a kerala tradition , just love that thing about them Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c Will visit again.'), ('Rated 4.0', 'RATED\n  Newest in the city. Last month only its started operated. Its a mallu restaurant , running by young peoples who are from allepey. When i visited that time no one wrote a single review or posted any single food photo in zomato page. But i thought of experimenting , blindly ordered the veg meals, the customer service was awesome . The presentation of all foods in unique way. They giving on banana leaf and curries in mud pots. I tried two three times. Tried kerala porotta, nice porotta n egg curry comparing nearby areas. Must go place if you craving for authentic kerala dishes. Try fish menus'), ('Rated 1.0', 'RATED\n  Definition of everything is different, kabab looks and feels like pakora , nit to mention the fact that they are oblivious of the saying " kabab mein haddi" since the pieces have more bone than flesh.\n\nBiriyani is sweet rice with spicy masala added.\nParatha is something which isnt abailable during lunch.\n\nSo if you happen to drop by, walk out or don\'t order biriyani and kabab and you possibly won\'t have parathas, so better to walk out.'), ('Rated 3.0', 'RATED\n  No banana leaf as specified'), ('Rated 5.0', 'RATED\n  Best authentic kerala food...best fish dishes in town...good service...great ambience...a must try for all kerala cuisine lovers...would love to visit again....'), ('Rated 5.0', 'RATED\n  One of the best place in blore to have Kerala food .\nMust try the sea foods... Good service too...One thing to notice here is that the meals are served on banana leaf which is a kerala tradition , just love that thing about them Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c Will visit again.'), ('Rated 4.0', 'RATED\n  Newest in the city. Last month only its started operated. Its a mallu restaurant , running by young peoples who are from allepey. When i visited that time no one wrote a single review or posted any single food photo in zomato page. But i thought of experimenting , blindly ordered the veg meals, the customer service was awesome . The presentation of all foods in unique way. They giving on banana leaf and curries in mud pots. I tried two three times. Tried kerala porotta, nice porotta n egg curry comparing nearby areas. Must go place if you craving for authentic kerala dishes. Try fish menus'), ('Rated 5.0', 'RATED\n  Freshness of the food is amazing! The Ambience is descent. Staff is polite. Less veg options but the fish and prawn varieties are amazingly vast.'), ('Rated 5.0', "RATED\n  Taste to it's best.. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d\nPresentation n dat too on banana leaf increases the taste of the food.. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯\nServices are quick and excellent.. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x85\nI will definitely advice my Kerala food fans to have an experience at your place ..\nAll the best Kerala Vibes..\nKeep going.. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©\nkeep growing .. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«\nn keep serving tasty food.. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤"), ('Rated 4.5', 'RATED\n  Good kerala food served in banana leaf, nice ambience and reasonable price. Friendly people and good customer relationship. Suggested for people who like kerala food.'), ('Rated 3.5', 'RATED\n  This place is new and has a good menu and the food is good.hope they keep up the good work.And the staff are really cheerful people.So I would recommend anyone who loves kerala food to goo to this place.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
It is a really good place to visit with friends. The ambience is really good. The open space is really nice. Food was good. Will visit again.'), ('Rated 3.0', "RATED\n  The service was really bad else I would have rated it a 4. The food is actually pretty tasty. I highly recommend the potato wedges and for cheese lovers the naga chilly cheese toast (its not that spicy don't worry). The chicken tikka also was quite delicious and the flavour of the onion rings nicely done but not even close to being crispy enough. Some mocktails/cocktails were good others like the mai tai fell flat.\n\nThe sheesha/hookah was ok. Not great and they again did not come often enough to change the coals etc and also used the hose without tips to test/start it which was kind of unhygienic. \n\nWe were put off by the poor service and so left to conclude our meal elsewhere. Their pricing is decent for the quality and portions.\n\nFood 4/5\nAmbiance 4/5\nPricing 3.5/5\nService 1/5"), ('Rated 4.0', 'RATED\n  A nice place to hangout with a bunch of friends, liked the interiors of place..quite spacious and quirky designs. They also have the option of Hukah.\nComing to the food..had ordered for pav Bajji fondue, the dish was good but dint seem like an actual fondue..\nThe chicken starter was good, pasta was yum but slightly salty that day. And I think..Mocktails can be improved on..All in alll a nice experience, great Ambience, good music and friendly staff!'), ('Rated 4.0', 'RATED\n  Great place to catch up for drinks, shisha or even dinner.\nI am very skeptical about bar food but Hammered was just a whole new level.\nI recommend the chicken pop corn, rodeo burger, indo chinese bhel and the bhel bhale puri.\nThe ambiance is amazing and it is not too loud.\nCan get a bit noisy if you are seated next to a group of college folk.\nService of food was quick but took a little time to get their attention after sometime to change the coal and get another round of drinks.\nStaff were friendly and good for groups.'), ('Rated 4.0', 'RATED\n  Hammered.. Belted in all the aspects, it may be ambience, food and drinks. One of the perfect place to visit for dining in the evening time. And even the crowd is also amazing. Also have outdoor seating, a big screen for perfect entertainment view attached to corner. Parking is the main concern here, leaving that rest everything reaches expectations.\nFood - 4/5\nAmbience - 4/5\nService - 4/5\nCrowd - 5/5'), ('Rated 4.0', 'RATED\n  One of the best pubs out there. Service was great and the food was good. Ambience is top-notch. Would really visit again. Must try their pizzas.'), ('Rated 5.0', "RATED\n  We visited during aftereas it was one collegues's send off party. Food was decent, ambience and music was rocking. Quite a happening place for any time visit. Service was also good."), ('Rated 5.0', 'RATED\n  One of the most User Friendly Place. Absolutely Love this place.\n\nRichard as a guest coordinator was awesome and tried his best to serve our case. One of the best Hookah places in the town.'), ('Rated 5.0', 'RATED\n  A very good place to chill out. Good food and the drinks were amazing too. And especially thanks to Sanjay, who has helped us have a wonderful evening at this place. A must visit!! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f'), ('Rated 4.0', 'RATED\n  Lovely experience at Hammered on Cunningham Road, fabulous atmosphere. Very agile service staff, loved the hookah and chilli chicken with green chillies. Drinks service was a bit slow.'), ('Rated 4.0', 'RATED\n  Very friendly and courteous staff. Ordered chicken steak in mushroom sauce. The steak was fine in taste, other elements were good. We ordered chicken biryani as well. Flavor was good. There being a lot of rush, service was a bit slow, but everything else was fine.'), ('Rated 5.0', 'RATED\n  Amazing ambience. Extremely trained staff. Tasty food.\nOrdered a dozen of food items and each of them was perfect. If you are planning to visit this place, get your reservations prior because it is crowded.'), ('Rated 5.0', 'RATED\n  Nice place with decent ambience and is a nicely decorated place.We literally enjoyed our evening there food was of good taste.The hookah was not that nice.The flavour was leaking after every 5 mins even after changing the coal for twice.But overall the staffs over there is great and helpful.5 stars cause they helped me a lot to execute my plan within few minutes as it was my friends birthday that day.The cake was really yummy.'), ('Rated 5.0', "RATED\n  It's nice place amongst the crowed area of Cunningham, had been here fr lunch and I would say it's one of the best\nMust try: corn salt and pepper, cappuccino brownies n mushroom cappuccino"), ('Rated 4.0', 'RATED\n  A place to really chill out with your friends and have some good food with it. Food and Friendship is a great combination for a wonderful evening.\n\nhttps://youtu.be/c8vv9ZYHLWg\n\nI ordered two starters : Veg & non-veg and I was certainly happy with the Starters. Paneer was as good as chicken. Being a non-vegeterian also I enjoyed having paneer. Next we ordered was Pizzaa... OBVIOUSLY.\nI would say pizza was not a very good choice there because I was not that happy with pizza and we just had to gulp it and finish it off. All the time we were having hukka and enjoying the music over there. So it was a nice evening with my friends.\n\nI have made a video about this place on my Youtube channel : Foodie Sapien.\n\nYou can check the place in more detail over there...\n\nhttps://youtu.be/c8vv9ZYHLWg\n\n#foodiesapien'), ('Rated 3.0', "RATED\n  YAYS:\nBlackbelt Chicken\nVeg Sliders\nMidsummer desire cocktail\nDJ & Music\nAmbiance of the 100 yr. Old building\nCoffee\nCrowd & Weekend Buzz\n\nNAYS:\nExotica Veg. Pizza\nOut of 48 drinks and beer - plenty were unavailable\nService turnaround time could be better\n\nP.S: Overall the place didn't lived upto the hype and wait. Wanted to rate 3.5, but Zomato isn't allowing decimal ratings anymore.\nWould recommend it though, for a trial."), ('Rated 4.0', 'RATED\n  The one thing I am going to remember from this place is the amazing spaghetti and the pan panna-cotta.\nThe place is hip if you sit outside. We sat inside to avoid the smoking zone.\nThe only caveat for which I took off a star is that the service was below average. I had to get up from the table to ask the waiter to come over and take our order.\nFor vegetarians, the crispy corn lives up to its name. Try the spaghetti mamarosa and arrabiata if you are looking for great sauces and the pan panna cotta with gulkand sauce.\nIf only the service had been better.'), ('Rated 5.0', 'RATED\n  The server Yamathapa was amazing! Served well and made it a family thing!\nLoved the experience in overall\nCheers to such amazing service and team!\nKudos!'), ('Rated 4.0', 'RATED\n  A place to really chill out with your friends and have some good food with it. Food and Friendship is a great combination for a wonderful evening.\n\nhttps://youtu.be/c8vv9ZYHLWg\n\nI ordered two starters : Veg & non-veg and I was certainly happy with the Starters. Paneer was as good as chicken. Being a non-vegeterian also I enjoyed having paneer. Next we ordered was Pizzaa... OBVIOUSLY.\nI would say pizza was not a very good choice there because I was not that happy with pizza and we just had to gulp it and finish it off. All the time we were having hukka and enjoying the music over there. So it was a nice evening with my friends.\n\nI have made a video about this place on my Youtube channel : Foodie Sapien.\n\nYou can check the place in more detail over there...\n\nhttps://youtu.be/c8vv9ZYHLWg\n\n#foodiesapien'), ('Rated 3.0', "RATED\n  YAYS:\nBlackbelt Chicken\nVeg Sliders\nMidsummer desire cocktail\nDJ & Music\nAmbiance of the 100 yr. Old building\nCoffee\nCrowd & Weekend Buzz\n\nNAYS:\nExotica Veg. Pizza\nOut of 48 drinks and beer - plenty were unavailable\nService turnaround time could be better\n\nP.S: Overall the place didn't lived upto the hype and wait. Wanted to rate 3.5, but Zomato isn't allowing decimal ratings anymore.\nWould recommend it though, for a trial."), ('Rated 4.0', 'RATED\n  The one thing I am going to remember from this place is the amazing spaghetti and the pan panna-cotta.\nThe place is hip if you sit outside. We sat inside to avoid the smoking zone.\nThe only caveat for which I took off a star is that the service was below average. I had to get up from the table to ask the waiter to come over and take our order.\nFor vegetarians, the crispy corn lives up to its name. Try the spaghetti mamarosa and arrabiata if you are looking for great sauces and the pan panna cotta with gulkand sauce.\nIf only the service had been better.'), ('Rated 5.0', 'RATED\n  The server Yamathapa was amazing! Served well and made it a family thing!\nLoved the experience in overall\nCheers to such amazing service and team!\nKudos!'), ('Rated 4.0', "RATED\n  Loved the pizza here. One of the best I've ever had. The food and ambience is really great. The staff is also very kind. Hoping to come back soon and have a blast"), ('Rated 4.0', 'RATED\n  Starting with the ambiance, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a pretty huge place but the service is restricted to only one portion of the place until 4pm (weekdays).\nComing to the service, they concentrated more on large groups and people who ordered hookah. Had to wait a long time to get the order as they were very busy with hookah pots and even after that had to remind them thrice to get water and ketchup.\nOrdered~\nHoney Chilli Potatoes: which were absolutely delicious and crispy.\nHammered Sliders: 4 small burgers with vegetable patty (mostly cabbage), nothing special in the taste but worth a try.\nQueen Margarita: no complain regarding the taste but just felt the base needed a little crisp, It was way to soft.\nTo sum it up, service could be better and food is great.\nWorth a visit.'), ('Rated 4.0', "RATED\n  If you are starting out with soups order the Seafood rasam. It is a beautiful broth with classic flavours and spices of rasam. It's the right amount of spicy, tangy and a slight hint of prawns at the end. It doesn't taste or smell fishy considering it has a seafood base. The mile-jule kebabs offers an interesting mix of flavours, saucy lolipops to the sauted chicken chunks with veggies. Even the tandoori and hariyali kebabs are well-marinated and the meat is tender as well. This a good menu that plays around with classic chats, tandoori, and kebab starters. You have just as many veg options as non-veg both in starters as well as main course.\n\nColorful walls and a vibrant ambience, the place is done up really well with bright colours and graffiti. It's a good place if you are looking for hookah, cheap alcohol, and a wide choice of veg and non-veg starters all under one roof."), ('Rated 3.0', 'RATED\n  This is essentially an establishment for cheap beer. We went in a large group of a dozen on a weekend for lunch and found it mostly populated by college kids and understandably so. In between lots of Kingfisher pitchers we had a fun afternoon but the food and service is terribly patchy. As an example, the French fries were inedible but on the other hand, the Puchkas were surprisingly good. Not much of decor or service to speak of (youÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99re better off serving stuff yourselves) but if youÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99re looking for cheap booze, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok for a pit stop.'), ('Rated 3.0', 'RATED\n  Service was pretty slow but the food was totally\nworth it Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\nThe Alfredo pizza,Alfredo pasta,paneer sufiyana tikka,chicken tikka (classic) was all amazinggg\nIÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99d definitely go back for the food\nThe inner area looks a lil shady thoÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84'), ('Rated 4.0', "RATED\n  Loved the pizza here. One of the best I've ever had. The food and ambience is really great. The staff is also very kind. Hoping to come back soon and have a blast"), ('Rated 4.0', 'RATED\n  Starting with the ambiance, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a pretty huge place but the service is restricted to only one portion of the place until 4pm (weekdays).\nComing to the service, they concentrated more on large groups and people who ordered hookah. Had to wait a long time to get the order as they were very busy with hookah pots and even after that had to remind them thrice to get water and ketchup.\nOrdered~\nHoney Chilli Potatoes: which were absolutely delicious and crispy.\nHammered Sliders: 4 small burgers with vegetable patty (mostly cabbage), nothing special in the taste but worth a try.\nQueen Margarita: no complain regarding the taste but just felt the base needed a little crisp, It was way to soft.\nTo sum it up, service could be better and food is great.\nWorth a visit.'), ('Rated 4.0', "RATED\n  If you are starting out with soups order the Seafood rasam. It is a beautiful broth with classic flavours and spices of rasam. It's the right amount of spicy, tangy and a slight hint of prawns at the end. It doesn't taste or smell fishy considering it has a seafood base. The mile-jule kebabs offers an interesting mix of flavours, saucy lolipops to the sauted chicken chunks with veggies. Even the tandoori and hariyali kebabs are well-marinated and the meat is tender as well. This a good menu that plays around with classic chats, tandoori, and kebab starters. You have just as many veg options as non-veg both in starters as well as main course.\n\nColorful walls and a vibrant ambience, the place is done up really well with bright colours and graffiti. It's a good place if you are looking for hookah, cheap alcohol, and a wide choice of veg and non-veg starters all under one roof."), ('Rated 3.0', 'RATED\n  This is essentially an establishment for cheap beer. We went in a large group of a dozen on a weekend for lunch and found it mostly populated by college kids and understandably so. In between lots of Kingfisher pitchers we had a fun afternoon but the food and service is terribly patchy. As an example, the French fries were inedible but on the other hand, the Puchkas were surprisingly good. Not much of decor or service to speak of (youÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99re better off serving stuff yourselves) but if youÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99re looking for cheap booze, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok for a pit stop.'), ('Rated 3.0', 'RATED\n  Service was pretty slow but the food was totally\nworth it Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\nThe Alfredo pizza,Alfredo pasta,paneer sufiyana tikka,chicken tikka (classic) was all amazinggg\nIÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99d definitely go back for the food\nThe inner area looks a lil shady thoÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84'), ('Rated 4.0', "RATED\n  Loved the pizza here. One of the best I've ever had. The food and ambience is really great. The staff is also very kind. Hoping to come back soon and have a blast"), ('Rated 4.0', 'RATED\n  Starting with the ambiance, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a pretty huge place but the service is restricted to only one portion of the place until 4pm (weekdays).\nComing to the service, they concentrated more on large groups and people who ordered hookah. Had to wait a long time to get the order as they were very busy with hookah pots and even after that had to remind them thrice to get water and ketchup.\nOrdered~\nHoney Chilli Potatoes: which were absolutely delicious and crispy.\nHammered Sliders: 4 small burgers with vegetable patty (mostly cabbage), nothing special in the taste but worth a try.\nQueen Margarita: no complain regarding the taste but just felt the base needed a little crisp, It was way to soft.\nTo sum it up, service could be better and food is great.\nWorth a visit.'), ('Rated 4.0', "RATED\n  If you are starting out with soups order the Seafood rasam. It is a beautiful broth with classic flavours and spices of rasam. It's the right amount of spicy, tangy and a slight hint of prawns at the end. It doesn't taste or smell fishy considering it has a seafood base. The mile-jule kebabs offers an interesting mix of flavours, saucy lolipops to the sauted chicken chunks with veggies. Even the tandoori and hariyali kebabs are well-marinated and the meat is tender as well. This a good menu that plays around with classic chats, tandoori, and kebab starters. You have just as many veg options as non-veg both in starters as well as main course.\n\nColorful walls and a vibrant ambience, the place is done up really well with bright colours and graffiti. It's a good place if you are looking for hookah, cheap alcohol, and a wide choice of veg and non-veg starters all under one roof."), ('Rated 3.0', 'RATED\n  This is essentially an establishment for cheap beer. We went in a large group of a dozen on a weekend for lunch and found it mostly populated by college kids and understandably so. In between lots of Kingfisher pitchers we had a fun afternoon but the food and service is terribly patchy. As an example, the French fries were inedible but on the other hand, the Puchkas were surprisingly good. Not much of decor or service to speak of (youÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99re better off serving stuff yourselves) but if youÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99re looking for cheap booze, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s ok for a pit stop.'), ('Rated 3.0', 'RATED\n  Service was pretty slow but the food was totally\nworth it Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f\nThe Alfredo pizza,Alfredo pasta,paneer sufiyana tikka,chicken tikka (classic) was all amazinggg\nIÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99d definitely go back for the food\nThe inner area looks a lil shady thoÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84'), ('Rated 4.0', "RATED\n  I love exploring places in blore. The main reason i went here was due to the high rating. The food in this place is good but i don't think the atmosphere is most electric. The music is good, the place lacks a bit of the pub feel."), ('Rated 5.0', 'RATED\n  Amazing service and well priced. The food also is decent . Liked everything but please do sit out since the indoor gets full of smoke. We had one of the best person serving us.'), ('Rated 4.0', 'RATED\n  DJ bravo had arrived to this place, we went all excited only to see him and groove into the beats of his music. But we actually ended up loving the place. Really spacious and very uniquely built. With many props for pictures and great food together. But quite disappointed with the peri peri chicken, which tasted like a chicken from days ago. Not so fresh! Paneer Tikka pizza was yumm! Overall a great place.'), ('Rated 4.0', "RATED\n  I love exploring places in blore. The main reason i went here was due to the high rating. The food in this place is good but i don't think the atmosphere is most electric. The music is good, the place lacks a bit of the pub feel."), ('Rated 5.0', 'RATED\n  Amazing service and well priced. The food also is decent . Liked everything but please do sit out since the indoor gets full of smoke. We had one of the best person serving us.'), ('Rated 4.0', 'RATED\n  DJ bravo had arrived to this place, we went all excited only to see him and groove into the beats of his music. But we actually ended up loving the place. Really spacious and very uniquely built. With many props for pictures and great food together. But quite disappointed with the peri peri chicken, which tasted like a chicken from days ago. Not so fresh! Paneer Tikka pizza was yumm! Overall a great place.'), ('Rated 4.0', "RATED\n  I love exploring places in blore. The main reason i went here was due to the high rating. The food in this place is good but i don't think the atmosphere is most electric. The music is good, the place lacks a bit of the pub feel."), ('Rated 5.0', 'RATED\n  Amazing service and well priced. The food also is decent . Liked everything but please do sit out since the indoor gets full of smoke. We had one of the best person serving us.'), ('Rated 4.0', 'RATED\n  DJ bravo had arrived to this place, we went all excited only to see him and groove into the beats of his music. But we actually ended up loving the place. Really spacious and very uniquely built. With many props for pictures and great food together. But quite disappointed with the peri peri chicken, which tasted like a chicken from days ago. Not so fresh! Paneer Tikka pizza was yumm! Overall a great place.'), ('Rated 4.0', "RATED\n  I love exploring places in blore. The main reason i went here was due to the high rating. The food in this place is good but i don't think the atmosphere is most electric. The music is good, the place lacks a bit of the pub feel."), ('Rated 5.0', 'RATED\n  Amazing service and well priced. The food also is decent . Liked everything but please do sit out since the indoor gets full of smoke. We had one of the best person serving us.'), ('Rated 4.0', 'RATED\n  DJ bravo had arrived to this place, we went all excited only to see him and groove into the beats of his music. But we actually ended up loving the place. Really spacious and very uniquely built. With many props for pictures and great food together. But quite disappointed with the peri peri chicken, which tasted like a chicken from days ago. Not so fresh! Paneer Tikka pizza was yumm! Overall a great place.'), ('Rated 4.0', "RATED\n  I love exploring places in blore. The main reason i went here was due to the high rating. The food in this place is good but i don't think the atmosphere is most electric. The music is good, the place lacks a bit of the pub feel."), ('Rated 5.0', 'RATED\n  Amazing service and well priced. The food also is decent . Liked everything but please do sit out since the indoor gets full of smoke. We had one of the best person serving us.'), ('Rated 4.0', 'RATED\n  DJ bravo had arrived to this place, we went all excited only to see him and groove into the beats of his music. But we actually ended up loving the place. Really spacious and very uniquely built. With many props for pictures and great food together. But quite disappointed with the peri peri chicken, which tasted like a chicken from days ago. Not so fresh! Paneer Tikka pizza was yumm! Overall a great place.'), ('Rated 4.0', "RATED\n  I love exploring places in blore. The main reason i went here was due to the high rating. The food in this place is good but i don't think the atmosphere is most electric. The music is good, the place lacks a bit of the pub feel."), ('Rated 5.0', 'RATED\n  Amazing service and well priced. The food also is decent . Liked everything but please do sit out since the indoor gets full of smoke. We had one of the best person serving us.'), ('Rated 4.0', 'RATED\n  DJ bravo had arrived to this place, we went all excited only to see him and groove into the beats of his music. But we actually ended up loving the place. Really spacious and very uniquely built. With many props for pictures and great food together. But quite disappointed with the peri peri chicken, which tasted like a chicken from days ago. Not so fresh! Paneer Tikka pizza was yumm! Overall a great place.'), ('Rated 2.0', 'RATED\n  Food: 4/5 (We only tried the peri peri chicken wings)\n\nDrinks: 3/5 (3 out of the 4 drinks we ordered were not available, and the ones that were served had dubiously low levels of alcohol)\n\nCustomer Service: 3.5/5\n\nValue for Money: 3.5/5'), ('Rated 4.0', 'RATED\n  Located at Vasanth nagar, hammered is an amazing place for a bunch of friends to hang out with. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a place which serves both hookah and alcohol.\nThe vibe that this place gives is really amazing , itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s widely spread out with loud music in one side , quite on another side and match playing on another side itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s just got a lot of different sorts of seating arrangements according to your convenience.\nWe tried the Paan Rasna with mint hookah flavor. The hookah was honestly very good and smooth and the flavour has always been our personal favorite\nComing down to what we ate , we ordered the Alfredo chicken pasta and Spaghetti Bolognaise. The Speghetti was a bit too spicy but tasted really good. The Alfredo pasta was our favorite, mixed with white sauce itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s always cooked to perfection\nOverall we loved the place and the vibe, would definitely return'), ('Rated 4.0', 'RATED\n  We reached the restaurant at around 1:30pm. We were addressed and shown to our table. We browsed the menu n were ready to order, but the service was laggy right from the start. We had to wait for around 10 mins.\nWe ordered Honey Chilli Potato n Paneer Sticks for starters and GodÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s Own Country, One More Please n Cuddle On the Beach for cocktails n mock tail to sip on. Starters were both yummilicious, very well prepared except Cuddle on the beach.\nFor the main course we had couple veg curries n one non-veg curry with rotis n naans..all were well prepared n tasty.\nNow the review:\nFOOD - 4.5/5 (Cuddle on the beach mock tail was not prepared well)\nSERVICE - 2.5/5 (Had to prompt the service management to provide plates n spoons n forks)\nAMBIENCE - 3.5/5 (Open air seating. Though it was warm at first, later got soothing. Seats could be kept cleaner)\nPRICE - 4/5 (Food is worth the money spent)\n\nAll in all a day well spent. Though needs some improvement in their service.'), ('Rated 5.0', 'RATED\n  So my friends and I landed in this place for Sunday brunch and ended up ordering several dishes.\nWe ordered fish & chips, hammered fried chicken, French fries & mushroom cappuccino soup in starters.\nThen for the main course we ordered Chicken steak Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97, Pasta , Pizza half n half , Goan basa fish curry with Kerala rice,Paneer tikka will roti ,Tawa pulav & Chicken burger Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94 .\nWe loved all the dishes !!! Everything tasted Absolutely divine Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯\nThe ambience was so cool & the service was also upto the mark . Not only our orders came on time but also the staff was very friendly there.\nAltogether, an amazing experience Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c\nA must visit Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f'), ('Rated 4.0', 'RATED\n  I visited on Friday (yesterday) with a friend. We got both the veg and non veg tandoori platters, tenderloin and a couple of mocktails.\n\nMy friend liked the veg items; I happened to try paneer and the meat items (fish, prawns, chicken and mutton) and they were all decent (especially the grilled seafood) served with mint chutney.\n\nSteak along with mash and vegetables was fine (except for the sauce being a bit too salty).\n\nPortion sizes were generous and the ambience was lively. Mocktails were average which was a bit of a letdown to be honest.\n\nService was a bit slow (since it was packed) but decent on the whole.\n\nFood - 3/5. Service - 4/5.'), ('Rated 4.0', 'RATED\n  Truly a peaceful and chill place to just have an evening out.\nThe hookah was great, had a triple flavour mix of lemon, orange and apple and it was a joy.\nSipped on some beer and some pizza and masala fries were just right too.'), ('Rated 5.0', 'RATED\n  My Second Home!!\n\nI donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t have a count on how many times I have gone to this place . Located centrally helps all our friends to meet up here . I have all my team outings here as it offers hookah + booze!\nFood: 5/5\nAmbience: 4/5\nHookah: 5/5\nOverall: 4.5 (This place is worth the hype)\nYou get a variety of collection of drinks you like. They always stream live matches be it any sport! The music is so lively which adds to the perfect ambience . The staffs are really friendly and helpful, one of the very few places which you will never get bored or disappointed . Highly recommend to visit this place!'), ('Rated 5.0', "RATED\n  Nice music, good food and excellent service by TIA made the night an awesome.night....we initially ordered a beef chilly and the waiter sensed we didn't like it and changed it to another beef dish which was awesome......keep up the service guys....Will be coming for more for sure!"), ('Rated 4.0', 'RATED\n  A gorgeous little hideaway in the middle of the city. The entrance can be unassuming, but donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t let that fool you. This place provides the vibes of Goa in the heart of Bangalore.\n\nAmbience: (5/5)\nLove all the outdoor seating, the half car coming out of the wall and just all the gorgeous artwork all around. Multiple seating options and they even have a pool table.\n\nFood: (4/5)\nThe food was a mixed bag for me. The salad was lovely and the dressing was made extremely well with the perfect flavour balance. The margherita pizza lacked the great flavour that we expected. The alcohol was well priced and had a good spread.\n\nSummary: (4/5)\nAll in all a decent experience, ideally enjoy the ambience as it truly does feel like a place not in bangalore or a city for that matter.'), ('Rated 5.0', "RATED\n  Best place to hang out with friends, really love the environment of hammered, food was really tasty serves in unique style,I loved cheese Maggi In pan.\nHammered rock's!!!! the music."), ('Rated 4.0', 'RATED\n  Food -4/5\nAmbience -4.2/5\nMusic - 4/5\nService -4/5\nOverall -4/5\n\nOne of the amazing place with good crowd and great interior ! Coming to food the best thing I had here was chicken golgappa! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d. You get good drinks and pizzaÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s!'), ('Rated 3.0', 'RATED\n  The food was really good!!...\nActually only the food was good.. the ambiance was not that great and service was really bad we waited 10-15mins for the menu card. Yes, the waiter was very polite but the service was very bad they kept us waiting for so long ... We were feeling like they are not willing serve us...\n\nAlthough I must say that they were really quick during the bill time.'), ('Rated 4.0', 'RATED\n  One of the best places to chill with your friends around Cunningham road.\nAmbience is great and food is amazing.\nWe tried cheese fingers, Chinese bhel,Loaded french fries,burgers, jalapeno cheese poppers and few amazing mocktails.\nDo try it out and have a good experience!'), ('Rated 5.0', "RATED\n  I wanted to visit this place from a long time, but hadn'tÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84\nAnd then came d time to visit it with my office-matesÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\n\nIt's one amazing place near Cunningham road to hangout with a gang...\n\nAmbience : Amazing Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d.. one of it's kind..\nFood : Pretty good with all d starters as well as main course and the good part was the food used to get delivered on time...\nStaff : Very friendly and co-operative staff people.\n\nOne must visit this place with a gang to enjoy to the core..."), ('Rated 5.0', "RATED\n  Best place to hang out with friends, really love the environment of hammered, food was really tasty serves in unique style,I loved cheese Maggi In pan.\nHammered rock's!!!! the music."), ('Rated 4.0', 'RATED\n  Food -4/5\nAmbience -4.2/5\nMusic - 4/5\nService -4/5\nOverall -4/5\n\nOne of the amazing place with good crowd and great interior ! Coming to food the best thing I had here was chicken golgappa! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d. You get good drinks and pizzaÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s!'), ('Rated 3.0', 'RATED\n  The food was really good!!...\nActually only the food was good.. the ambiance was not that great and service was really bad we waited 10-15mins for the menu card. Yes, the waiter was very polite but the service was very bad they kept us waiting for so long ... We were feeling like they are not willing serve us...\n\nAlthough I must say that they were really quick during the bill time.'), ('Rated 4.0', 'RATED\n  One of the best places to chill with your friends around Cunningham road.\nAmbience is great and food is amazing.\nWe tried cheese fingers, Chinese bhel,Loaded french fries,burgers, jalapeno cheese poppers and few amazing mocktails.\nDo try it out and have a good experience!'), ('Rated 5.0', "RATED\n  I wanted to visit this place from a long time, but hadn'tÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84\nAnd then came d time to visit it with my office-matesÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\n\nIt's one amazing place near Cunningham road to hangout with a gang...\n\nAmbience : Amazing Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d.. one of it's kind..\nFood : Pretty good with all d starters as well as main course and the good part was the food used to get delivered on time...\nStaff : Very friendly and co-operative staff people.\n\nOne must visit this place with a gang to enjoy to the core..."), ('Rated 5.0', "RATED\n  Best place to hang out with friends, really love the environment of hammered, food was really tasty serves in unique style,I loved cheese Maggi In pan.\nHammered rock's!!!! the music."), ('Rated 4.0', 'RATED\n  Food -4/5\nAmbience -4.2/5\nMusic - 4/5\nService -4/5\nOverall -4/5\n\nOne of the amazing place with good crowd and great interior ! Coming to food the best thing I had here was chicken golgappa! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d. You get good drinks and pizzaÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s!'), ('Rated 3.0', 'RATED\n  The food was really good!!...\nActually only the food was good.. the ambiance was not that great and service was really bad we waited 10-15mins for the menu card. Yes, the waiter was very polite but the service was very bad they kept us waiting for so long ... We were feeling like they are not willing serve us...\n\nAlthough I must say that they were really quick during the bill time.'), ('Rated 4.0', 'RATED\n  One of the best places to chill with your friends around Cunningham road.\nAmbience is great and food is amazing.\nWe tried cheese fingers, Chinese bhel,Loaded french fries,burgers, jalapeno cheese poppers and few amazing mocktails.\nDo try it out and have a good experience!'), ('Rated 5.0', "RATED\n  I wanted to visit this place from a long time, but hadn'tÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84\nAnd then came d time to visit it with my office-matesÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\n\nIt's one amazing place near Cunningham road to hangout with a gang...\n\nAmbience : Amazing Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d.. one of it's kind..\nFood : Pretty good with all d starters as well as main course and the good part was the food used to get delivered on time...\nStaff : Very friendly and co-operative staff people.\n\nOne must visit this place with a gang to enjoy to the core..."), ('Rated 5.0', "RATED\n  Best place to hang out with friends, really love the environment of hammered, food was really tasty serves in unique style,I loved cheese Maggi In pan.\nHammered rock's!!!! the music."), ('Rated 4.0', 'RATED\n  Food -4/5\nAmbience -4.2/5\nMusic - 4/5\nService -4/5\nOverall -4/5\n\nOne of the amazing place with good crowd and great interior ! Coming to food the best thing I had here was chicken golgappa! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d. You get good drinks and pizzaÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s!'), ('Rated 3.0', 'RATED\n  The food was really good!!...\nActually only the food was good.. the ambiance was not that great and service was really bad we waited 10-15mins for the menu card. Yes, the waiter was very polite but the service was very bad they kept us waiting for so long ... We were feeling like they are not willing serve us...\n\nAlthough I must say that they were really quick during the bill time.'), ('Rated 4.0', 'RATED\n  One of the best places to chill with your friends around Cunningham road.\nAmbience is great and food is amazing.\nWe tried cheese fingers, Chinese bhel,Loaded french fries,burgers, jalapeno cheese poppers and few amazing mocktails.\nDo try it out and have a good experience!'), ('Rated 5.0', "RATED\n  I wanted to visit this place from a long time, but hadn'tÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84\nAnd then came d time to visit it with my office-matesÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\n\nIt's one amazing place near Cunningham road to hangout with a gang...\n\nAmbience : Amazing Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d.. one of it's kind..\nFood : Pretty good with all d starters as well as main course and the good part was the food used to get delivered on time...\nStaff : Very friendly and co-operative staff people.\n\nOne must visit this place with a gang to enjoy to the core..."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  Good place during weekends. Amazing ambience. The food is good. The Brownie and ice cream are the best. The food is worth the pay. Pasta is also great.'), ('Rated 4.5', 'RATED\n  If you are a person who does not like a lot of noise, then you might not like this place.\n\nSpeaking otherwise, the ambiance was nice, the service was also good and what about food?\n\nWe had -\nMilky way burger - 5/5\nTandoori paneer pizza - 4.5/5 (Crust could have been better)\nChinese bhel - 5/5 (Awesome)\nHoney Chilli potato - 4.5/5 (crisp and tasty)\nPaneer tikka gravy - 3.5/5 (Too sour)\n\nChinese bhel is a must to try\n\nA highly recommended place to have dinner and also, the music is loud, so music lovers, your new bookmark is here.'), ('Rated 5.0', 'RATED\n  Must say the level of service provided by the manager - Mimin was excellent !! Tia server suggested us nachos which was very well made - The quality of food was good - we had crispy corn and nachos which was top notch ! We had LIT which was excellent , Over all a good experience !'), ('Rated 5.0', "RATED\n  Amazing place....... Celebrated my bachelor's party there... Amazing food quality and excellent service.\nLoved the platters... Both veg and non veg\nWould visit it again\nThank you for the amazing time"), ('Rated 3.0', "RATED\n  I'd been waiting to try out this place for a long time .\nStarting with the ambience, I wasn't a very big fan of it. But they offer sheesha at a very nominal price and i think that'll make any place a little more enjoyable. The service was promtp and quick.\nComing to the food, we ordered a chicken steak in mushroom sauce. It was served with the usual, mashed potatoes and veggies. The sauce was quite tasty and overall it was a good dish.\nWe also had an AOP- aglio olio pasta. The taste was nice but they added loads of chili and it left our mouths burning. So we asked for a replacement, which was just a little better. The last thing we had was a barbeque chicken pizza. This was super bland and tasted like a regular homemade pizza.\nOverall, I wasn't very happy with the quality of food."), ('Rated 4.0', 'RATED\n  One of the best pubs in Bangalore. Their list of long cocktails are just too good. Starts with tequila based to Gin and Rum based. They also have their signature style cocktails of LIIT.\n\nWe had their amazing mila-jula chicken kebab, which is a mixture of acahri, lemon and spicy based boneless kebab. It was just terrific. Nicely marinated kebabs.\n\nThe sukka chicken and vegetarian golgappas were nearly presented and was unexpectedly yummy.\n\nDal tadka with plain rice and their vegetarian burger were cooked and made superbly.\n\nChicken tikka pizza was sufficient for 2 people. Yummy pizza list they have.\n\nHookah. Yes, they have the normal water based ones as well as the water based replaced with fruit based ones. Amazing hookahs.\n\nGround floor is less noisy. Ideal for kids also to be there. Their top floors are ideal for young people with loud music.'), ('Rated 2.0', "RATED\n  Its such a sad place... The indoor seating is pathetic.. so dark even during the day and the sofas r torn... Food was okay since we didn't order much because of the sad ambience... We went there seeing the high ratings but looks like its opposite of it! The pasta s tasted ok.. Ginger chicken was good... The tables and cutlery needed some cleaning... Wouldn't recommend the place..."), ('Rated 3.0', "RATED\n  Food is very average especially pasta ambience is very okayish hookahs are good! It's not very crowded even on weekends!it's little difficult to locate"), ('Rated 4.0', 'RATED\n  In simple words\n\nAmazing place for hukkah ! Great food :) Courteous staff !\n\nSpecial thanks to Mr. Parmesh for his prompt service and helping us decide on some scumptous food !\n\nGreat going guys ! Keep it up'), ('Rated 4.0', 'RATED\n  Place is bit tricky to catch an eye on but google maps does the job!!\n\nHammered is a place for young crowd and leisure freaks!!\n\nI had taken 3 three starters :-\n1.) Naughty Paneer ( it was good but not up to the mark as the name says itt!!)\n2.) Cheese fingersÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b (highly recommended)\n3.) Andhra chilli chicken (was just to spicy with green chilli paste only , less of chicken pieces i felt)\n\nMain course:-\n1.) Bbq chicken pizza \U0001f929Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d was top notch !!\n2.)Pesto pasta was awesome !!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97\n\nDrinks:-\n1.) Cuddle on the beach\n2.)Summer berry\n3.)Tropical mocktail\n\nSmall drawback was all drinks had too much of lemon concentrate...\n\nRatings:-\n\nTaste:- 3/5\nFood:-3.5/5\nService:-4/5\nAmbiance:- 3/5'), ('Rated 4.0', 'RATED\n  One of the best pubs in Bangalore. Their list of long cocktails are just too good. Starts with tequila based to Gin and Rum based. They also have their signature style cocktails of LIIT.\n\nWe had their amazing mila-jula chicken kebab, which is a mixture of acahri, lemon and spicy based boneless kebab. It was just terrific. Nicely marinated kebabs.\n\nThe sukka chicken and vegetarian golgappas were nearly presented and was unexpectedly yummy.\n\nDal tadka with plain rice and their vegetarian burger were cooked and made superbly.\n\nChicken tikka pizza was sufficient for 2 people. Yummy pizza list they have.\n\nHookah. Yes, they have the normal water based ones as well as the water based replaced with fruit based ones. Amazing hookahs.\n\nGround floor is less noisy. Ideal for kids also to be there. Their top floors are ideal for young people with loud music.'), ('Rated 2.0', "RATED\n  Its such a sad place... The indoor seating is pathetic.. so dark even during the day and the sofas r torn... Food was okay since we didn't order much because of the sad ambience... We went there seeing the high ratings but looks like its opposite of it! The pasta s tasted ok.. Ginger chicken was good... The tables and cutlery needed some cleaning... Wouldn't recommend the place..."), ('Rated 3.0', "RATED\n  Food is very average especially pasta ambience is very okayish hookahs are good! It's not very crowded even on weekends!it's little difficult to locate"), ('Rated 4.0', 'RATED\n  In simple words\n\nAmazing place for hukkah ! Great food :) Courteous staff !\n\nSpecial thanks to Mr. Parmesh for his prompt service and helping us decide on some scumptous food !\n\nGreat going guys ! Keep it up'), ('Rated 4.0', 'RATED\n  Place is bit tricky to catch an eye on but google maps does the job!!\n\nHammered is a place for young crowd and leisure freaks!!\n\nI had taken 3 three starters :-\n1.) Naughty Paneer ( it was good but not up to the mark as the name says itt!!)\n2.) Cheese fingersÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b (highly recommended)\n3.) Andhra chilli chicken (was just to spicy with green chilli paste only , less of chicken pieces i felt)\n\nMain course:-\n1.) Bbq chicken pizza \U0001f929Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d was top notch !!\n2.)Pesto pasta was awesome !!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97\n\nDrinks:-\n1.) Cuddle on the beach\n2.)Summer berry\n3.)Tropical mocktail\n\nSmall drawback was all drinks had too much of lemon concentrate...\n\nRatings:-\n\nTaste:- 3/5\nFood:-3.5/5\nService:-4/5\nAmbiance:- 3/5'), ('Rated 4.0', 'RATED\n  One of the best pubs in Bangalore. Their list of long cocktails are just too good. Starts with tequila based to Gin and Rum based. They also have their signature style cocktails of LIIT.\n\nWe had their amazing mila-jula chicken kebab, which is a mixture of acahri, lemon and spicy based boneless kebab. It was just terrific. Nicely marinated kebabs.\n\nThe sukka chicken and vegetarian golgappas were nearly presented and was unexpectedly yummy.\n\nDal tadka with plain rice and their vegetarian burger were cooked and made superbly.\n\nChicken tikka pizza was sufficient for 2 people. Yummy pizza list they have.\n\nHookah. Yes, they have the normal water based ones as well as the water based replaced with fruit based ones. Amazing hookahs.\n\nGround floor is less noisy. Ideal for kids also to be there. Their top floors are ideal for young people with loud music.'), ('Rated 2.0', "RATED\n  Its such a sad place... The indoor seating is pathetic.. so dark even during the day and the sofas r torn... Food was okay since we didn't order much because of the sad ambience... We went there seeing the high ratings but looks like its opposite of it! The pasta s tasted ok.. Ginger chicken was good... The tables and cutlery needed some cleaning... Wouldn't recommend the place..."), ('Rated 3.0', "RATED\n  Food is very average especially pasta ambience is very okayish hookahs are good! It's not very crowded even on weekends!it's little difficult to locate"), ('Rated 4.0', 'RATED\n  In simple words\n\nAmazing place for hukkah ! Great food :) Courteous staff !\n\nSpecial thanks to Mr. Parmesh for his prompt service and helping us decide on some scumptous food !\n\nGreat going guys ! Keep it up'), ('Rated 4.0', 'RATED\n  Place is bit tricky to catch an eye on but google maps does the job!!\n\nHammered is a place for young crowd and leisure freaks!!\n\nI had taken 3 three starters :-\n1.) Naughty Paneer ( it was good but not up to the mark as the name says itt!!)\n2.) Cheese fingersÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b (highly recommended)\n3.) Andhra chilli chicken (was just to spicy with green chilli paste only , less of chicken pieces i felt)\n\nMain course:-\n1.) Bbq chicken pizza \U0001f929Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d was top notch !!\n2.)Pesto pasta was awesome !!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97\n\nDrinks:-\n1.) Cuddle on the beach\n2.)Summer berry\n3.)Tropical mocktail\n\nSmall drawback was all drinks had too much of lemon concentrate...\n\nRatings:-\n\nTaste:- 3/5\nFood:-3.5/5\nService:-4/5\nAmbiance:- 3/5'), ('Rated 4.0', 'RATED\n  One of the best pubs in Bangalore. Their list of long cocktails are just too good. Starts with tequila based to Gin and Rum based. They also have their signature style cocktails of LIIT.\n\nWe had their amazing mila-jula chicken kebab, which is a mixture of acahri, lemon and spicy based boneless kebab. It was just terrific. Nicely marinated kebabs.\n\nThe sukka chicken and vegetarian golgappas were nearly presented and was unexpectedly yummy.\n\nDal tadka with plain rice and their vegetarian burger were cooked and made superbly.\n\nChicken tikka pizza was sufficient for 2 people. Yummy pizza list they have.\n\nHookah. Yes, they have the normal water based ones as well as the water based replaced with fruit based ones. Amazing hookahs.\n\nGround floor is less noisy. Ideal for kids also to be there. Their top floors are ideal for young people with loud music.'), ('Rated 2.0', "RATED\n  Its such a sad place... The indoor seating is pathetic.. so dark even during the day and the sofas r torn... Food was okay since we didn't order much because of the sad ambience... We went there seeing the high ratings but looks like its opposite of it! The pasta s tasted ok.. Ginger chicken was good... The tables and cutlery needed some cleaning... Wouldn't recommend the place..."), ('Rated 3.0', "RATED\n  Food is very average especially pasta ambience is very okayish hookahs are good! It's not very crowded even on weekends!it's little difficult to locate"), ('Rated 4.0', 'RATED\n  In simple words\n\nAmazing place for hukkah ! Great food :) Courteous staff !\n\nSpecial thanks to Mr. Parmesh for his prompt service and helping us decide on some scumptous food !\n\nGreat going guys ! Keep it up'), ('Rated 4.0', 'RATED\n  Place is bit tricky to catch an eye on but google maps does the job!!\n\nHammered is a place for young crowd and leisure freaks!!\n\nI had taken 3 three starters :-\n1.) Naughty Paneer ( it was good but not up to the mark as the name says itt!!)\n2.) Cheese fingersÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b (highly recommended)\n3.) Andhra chilli chicken (was just to spicy with green chilli paste only , less of chicken pieces i felt)\n\nMain course:-\n1.) Bbq chicken pizza \U0001f929Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d was top notch !!\n2.)Pesto pasta was awesome !!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97\n\nDrinks:-\n1.) Cuddle on the beach\n2.)Summer berry\n3.)Tropical mocktail\n\nSmall drawback was all drinks had too much of lemon concentrate...\n\nRatings:-\n\nTaste:- 3/5\nFood:-3.5/5\nService:-4/5\nAmbiance:- 3/5'), ('Rated 4.0', 'RATED\n  One of the best pubs in Bangalore. Their list of long cocktails are just too good. Starts with tequila based to Gin and Rum based. They also have their signature style cocktails of LIIT.\n\nWe had their amazing mila-jula chicken kebab, which is a mixture of acahri, lemon and spicy based boneless kebab. It was just terrific. Nicely marinated kebabs.\n\nThe sukka chicken and vegetarian golgappas were nearly presented and was unexpectedly yummy.\n\nDal tadka with plain rice and their vegetarian burger were cooked and made superbly.\n\nChicken tikka pizza was sufficient for 2 people. Yummy pizza list they have.\n\nHookah. Yes, they have the normal water based ones as well as the water based replaced with fruit based ones. Amazing hookahs.\n\nGround floor is less noisy. Ideal for kids also to be there. Their top floors are ideal for young people with loud music.'), ('Rated 2.0', "RATED\n  Its such a sad place... The indoor seating is pathetic.. so dark even during the day and the sofas r torn... Food was okay since we didn't order much because of the sad ambience... We went there seeing the high ratings but looks like its opposite of it! The pasta s tasted ok.. Ginger chicken was good... The tables and cutlery needed some cleaning... Wouldn't recommend the place..."), ('Rated 3.0', "RATED\n  Food is very average especially pasta ambience is very okayish hookahs are good! It's not very crowded even on weekends!it's little difficult to locate"), ('Rated 4.0', 'RATED\n  In simple words\n\nAmazing place for hukkah ! Great food :) Courteous staff !\n\nSpecial thanks to Mr. Parmesh for his prompt service and helping us decide on some scumptous food !\n\nGreat going guys ! Keep it up'), ('Rated 4.0', 'RATED\n  Place is bit tricky to catch an eye on but google maps does the job!!\n\nHammered is a place for young crowd and leisure freaks!!\n\nI had taken 3 three starters :-\n1.) Naughty Paneer ( it was good but not up to the mark as the name says itt!!)\n2.) Cheese fingersÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b (highly recommended)\n3.) Andhra chilli chicken (was just to spicy with green chilli paste only , less of chicken pieces i felt)\n\nMain course:-\n1.) Bbq chicken pizza \U0001f929Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d was top notch !!\n2.)Pesto pasta was awesome !!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97\n\nDrinks:-\n1.) Cuddle on the beach\n2.)Summer berry\n3.)Tropical mocktail\n\nSmall drawback was all drinks had too much of lemon concentrate...\n\nRatings:-\n\nTaste:- 3/5\nFood:-3.5/5\nService:-4/5\nAmbiance:- 3/5'), ('Rated 5.0', 'RATED\n  Awesome place and awesome food. This place is really special. Cost wise quite reasonable and food taste is superb. We are planning to there again.'), ('Rated 2.0', "RATED\n  We went there reading the reviews but we were very disappointed.. the ambience was dull, the seating was really bad.. the sofas provided was so low and the cushions were all spoilt.. the service was bad.. we had ordered a starter which came at the end - even after our dessert which actually pissed us off.. they didn't even apologize for it.. the cocktail that I ordered was terrible.. the food was ok.. never again!!"), ('Rated 3.0', "RATED\n  Went to Hammered as I wanted to try this place out for a really long time. The ambiance of the place is amazing, especially the open air theme. Almost like a mini park. They also have a pool table and few other games. The interior is also good. The service was nice , the fact that they have zomato gold makes it a good place to go, but still the prices are a bit higher than other places.Coming to food, we ordered a chicken barbeque Pizza and their Hammered special chicken. The pizza was good and the quantity and size were sufficient, but the chicken was extremely disappointing, it was frozen chicken and they charged it 270 something.. we didn't eat most of it, that was a waste of money, disappointed to see that they messed up their own special chicken dish."), ('Rated 2.0', 'RATED\n  Stoped by on a Saturday and was very disappointed, looks like the place was quite empty but the staff was clueless as to wear they could offer us a table for two :/, the furniture was worn out and did not look like it was maintained. We could not order the drinks we wanted cause there was no stock and had to make do with what they had, which turned out good, looks like they have some interesting options for food but was not up to the mark, service can be improved. The two is only for the OK OK drinks!!'), ('Rated 3.0', 'RATED\n  Went here for a birthday party , nice crowd , good ambiance, tried all the cocktails including the hot Todi , service was good , food however could be better'), ('Rated 5.0', 'RATED\n  Awesome place and awesome food. This place is really special. Cost wise quite reasonable and food taste is superb. We are planning to there again.'), ('Rated 2.0', "RATED\n  We went there reading the reviews but we were very disappointed.. the ambience was dull, the seating was really bad.. the sofas provided was so low and the cushions were all spoilt.. the service was bad.. we had ordered a starter which came at the end - even after our dessert which actually pissed us off.. they didn't even apologize for it.. the cocktail that I ordered was terrible.. the food was ok.. never again!!"), ('Rated 3.0', "RATED\n  Went to Hammered as I wanted to try this place out for a really long time. The ambiance of the place is amazing, especially the open air theme. Almost like a mini park. They also have a pool table and few other games. The interior is also good. The service was nice , the fact that they have zomato gold makes it a good place to go, but still the prices are a bit higher than other places.Coming to food, we ordered a chicken barbeque Pizza and their Hammered special chicken. The pizza was good and the quantity and size were sufficient, but the chicken was extremely disappointing, it was frozen chicken and they charged it 270 something.. we didn't eat most of it, that was a waste of money, disappointed to see that they messed up their own special chicken dish."), ('Rated 2.0', 'RATED\n  Stoped by on a Saturday and was very disappointed, looks like the place was quite empty but the staff was clueless as to wear they could offer us a table for two :/, the furniture was worn out and did not look like it was maintained. We could not order the drinks we wanted cause there was no stock and had to make do with what they had, which turned out good, looks like they have some interesting options for food but was not up to the mark, service can be improved. The two is only for the OK OK drinks!!'), ('Rated 3.0', 'RATED\n  Went here for a birthday party , nice crowd , good ambiance, tried all the cocktails including the hot Todi , service was good , food however could be better'), ('Rated 5.0', 'RATED\n  Awesome place and awesome food. This place is really special. Cost wise quite reasonable and food taste is superb. We are planning to there again.'), ('Rated 2.0', "RATED\n  We went there reading the reviews but we were very disappointed.. the ambience was dull, the seating was really bad.. the sofas provided was so low and the cushions were all spoilt.. the service was bad.. we had ordered a starter which came at the end - even after our dessert which actually pissed us off.. they didn't even apologize for it.. the cocktail that I ordered was terrible.. the food was ok.. never again!!"), ('Rated 3.0', "RATED\n  Went to Hammered as I wanted to try this place out for a really long time. The ambiance of the place is amazing, especially the open air theme. Almost like a mini park. They also have a pool table and few other games. The interior is also good. The service was nice , the fact that they have zomato gold makes it a good place to go, but still the prices are a bit higher than other places.Coming to food, we ordered a chicken barbeque Pizza and their Hammered special chicken. The pizza was good and the quantity and size were sufficient, but the chicken was extremely disappointing, it was frozen chicken and they charged it 270 something.. we didn't eat most of it, that was a waste of money, disappointed to see that they messed up their own special chicken dish."), ('Rated 2.0', 'RATED\n  Stoped by on a Saturday and was very disappointed, looks like the place was quite empty but the staff was clueless as to wear they could offer us a table for two :/, the furniture was worn out and did not look like it was maintained. We could not order the drinks we wanted cause there was no stock and had to make do with what they had, which turned out good, looks like they have some interesting options for food but was not up to the mark, service can be improved. The two is only for the OK OK drinks!!'), ('Rated 3.0', 'RATED\n  Went here for a birthday party , nice crowd , good ambiance, tried all the cocktails including the hot Todi , service was good , food however could be better'), ('Rated 5.0', 'RATED\n  Awesome place and awesome food. This place is really special. Cost wise quite reasonable and food taste is superb. We are planning to there again.'), ('Rated 2.0', "RATED\n  We went there reading the reviews but we were very disappointed.. the ambience was dull, the seating was really bad.. the sofas provided was so low and the cushions were all spoilt.. the service was bad.. we had ordered a starter which came at the end - even after our dessert which actually pissed us off.. they didn't even apologize for it.. the cocktail that I ordered was terrible.. the food was ok.. never again!!"), ('Rated 3.0', "RATED\n  Went to Hammered as I wanted to try this place out for a really long time. The ambiance of the place is amazing, especially the open air theme. Almost like a mini park. They also have a pool table and few other games. The interior is also good. The service was nice , the fact that they have zomato gold makes it a good place to go, but still the prices are a bit higher than other places.Coming to food, we ordered a chicken barbeque Pizza and their Hammered special chicken. The pizza was good and the quantity and size were sufficient, but the chicken was extremely disappointing, it was frozen chicken and they charged it 270 something.. we didn't eat most of it, that was a waste of money, disappointed to see that they messed up their own special chicken dish."), ('Rated 2.0', 'RATED\n  Stoped by on a Saturday and was very disappointed, looks like the place was quite empty but the staff was clueless as to wear they could offer us a table for two :/, the furniture was worn out and did not look like it was maintained. We could not order the drinks we wanted cause there was no stock and had to make do with what they had, which turned out good, looks like they have some interesting options for food but was not up to the mark, service can be improved. The two is only for the OK OK drinks!!'), ('Rated 3.0', 'RATED\n  Went here for a birthday party , nice crowd , good ambiance, tried all the cocktails including the hot Todi , service was good , food however could be better'), ('Rated 5.0', 'RATED\n  Awesome place and awesome food. This place is really special. Cost wise quite reasonable and food taste is superb. We are planning to there again.'), ('Rated 2.0', "RATED\n  We went there reading the reviews but we were very disappointed.. the ambience was dull, the seating was really bad.. the sofas provided was so low and the cushions were all spoilt.. the service was bad.. we had ordered a starter which came at the end - even after our dessert which actually pissed us off.. they didn't even apologize for it.. the cocktail that I ordered was terrible.. the food was ok.. never again!!"), ('Rated 3.0', "RATED\n  Went to Hammered as I wanted to try this place out for a really long time. The ambiance of the place is amazing, especially the open air theme. Almost like a mini park. They also have a pool table and few other games. The interior is also good. The service was nice , the fact that they have zomato gold makes it a good place to go, but still the prices are a bit higher than other places.Coming to food, we ordered a chicken barbeque Pizza and their Hammered special chicken. The pizza was good and the quantity and size were sufficient, but the chicken was extremely disappointing, it was frozen chicken and they charged it 270 something.. we didn't eat most of it, that was a waste of money, disappointed to see that they messed up their own special chicken dish."), ('Rated 2.0', 'RATED\n  Stoped by on a Saturday and was very disappointed, looks like the place was quite empty but the staff was clueless as to wear they could offer us a table for two :/, the furniture was worn out and did not look like it was maintained. We could not order the drinks we wanted cause there was no stock and had to make do with what they had, which turned out good, looks like they have some interesting options for food but was not up to the mark, service can be improved. The two is only for the OK OK drinks!!'), ('Rated 3.0', 'RATED\n  Went here for a birthday party , nice crowd , good ambiance, tried all the cocktails including the hot Todi , service was good , food however could be better'), ('Rated 5.0', 'RATED\n  Awesome place and awesome food. This place is really special. Cost wise quite reasonable and food taste is superb. We are planning to there again.'), ('Rated 2.0', "RATED\n  We went there reading the reviews but we were very disappointed.. the ambience was dull, the seating was really bad.. the sofas provided was so low and the cushions were all spoilt.. the service was bad.. we had ordered a starter which came at the end - even after our dessert which actually pissed us off.. they didn't even apologize for it.. the cocktail that I ordered was terrible.. the food was ok.. never again!!"), ('Rated 3.0', "RATED\n  Went to Hammered as I wanted to try this place out for a really long time. The ambiance of the place is amazing, especially the open air theme. Almost like a mini park. They also have a pool table and few other games. The interior is also good. The service was nice , the fact that they have zomato gold makes it a good place to go, but still the prices are a bit higher than other places.Coming to food, we ordered a chicken barbeque Pizza and their Hammered special chicken. The pizza was good and the quantity and size were sufficient, but the chicken was extremely disappointing, it was frozen chicken and they charged it 270 something.. we didn't eat most of it, that was a waste of money, disappointed to see that they messed up their own special chicken dish."), ('Rated 2.0', 'RATED\n  Stoped by on a Saturday and was very disappointed, looks like the place was quite empty but the staff was clueless as to wear they could offer us a table for two :/, the furniture was worn out and did not look like it was maintained. We could not order the drinks we wanted cause there was no stock and had to make do with what they had, which turned out good, looks like they have some interesting options for food but was not up to the mark, service can be improved. The two is only for the OK OK drinks!!'), ('Rated 3.0', 'RATED\n  Went here for a birthday party , nice crowd , good ambiance, tried all the cocktails including the hot Todi , service was good , food however could be better'), ('Rated 5.0', 'RATED\n \nIt is a nice restaurant with beautiful ambience. Dishes are reasonably priced and preparations are quite delicious. Received a very warm welcome by the courteous and happy staff. Excellent environment, friendly service, and great menu choices, definitely hope to go back. Having dinner here is always a real pleasure. Would definitely recommend this lovely restaurant.\n\nExtra 1 Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90 for the staff named Ali(extremely humble and hard-working)\n\nFor more updates follow @bangalorefoodielove(Instagram)'), ('Rated 4.0', 'RATED\n  Great place for people who love drinks with hookah. The ambience very much going with the name " hammered". Great place for chilling out. Should surely try their toothsome chiken fried in rum which you cannot miss out on. The Andhra style chilli chiken is a risky affair so if you love spicy definetly go for it.\n\nWith Kunal Joshi'), ('Rated 5.0', 'RATED\n  Best place to hangout with friends good music good sheesha and wide range of bar and food menu and good ambience be it morning or evening and courteous staff'), ('Rated 5.0', 'RATED\n \nIt is a nice restaurant with beautiful ambience. Dishes are reasonably priced and preparations are quite delicious. Received a very warm welcome by the courteous and happy staff. Excellent environment, friendly service, and great menu choices, definitely hope to go back. Having dinner here is always a real pleasure. Would definitely recommend this lovely restaurant.\n\nExtra 1 Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90 for the staff named Ali(extremely humble and hard-working)\n\nFor more updates follow @bangalorefoodielove(Instagram)'), ('Rated 4.0', 'RATED\n  Great place for people who love drinks with hookah. The ambience very much going with the name " hammered". Great place for chilling out. Should surely try their toothsome chiken fried in rum which you cannot miss out on. The Andhra style chilli chiken is a risky affair so if you love spicy definetly go for it.\n\nWith Kunal Joshi'), ('Rated 5.0', 'RATED\n  Best place to hangout with friends good music good sheesha and wide range of bar and food menu and good ambience be it morning or evening and courteous staff'), ('Rated 5.0', 'RATED\n \nIt is a nice restaurant with beautiful ambience. Dishes are reasonably priced and preparations are quite delicious. Received a very warm welcome by the courteous and happy staff. Excellent environment, friendly service, and great menu choices, definitely hope to go back. Having dinner here is always a real pleasure. Would definitely recommend this lovely restaurant.\n\nExtra 1 Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90 for the staff named Ali(extremely humble and hard-working)\n\nFor more updates follow @bangalorefoodielove(Instagram)'), ('Rated 4.0', 'RATED\n  Great place for people who love drinks with hookah. The ambience very much going with the name " hammered". Great place for chilling out. Should surely try their toothsome chiken fried in rum which you cannot miss out on. The Andhra style chilli chiken is a risky affair so if you love spicy definetly go for it.\n\nWith Kunal Joshi'), ('Rated 5.0', 'RATED\n  Best place to hangout with friends good music good sheesha and wide range of bar and food menu and good ambience be it morning or evening and courteous staff'), ('Rated 3.0', 'RATED\n  Had heard a lot about hammered and its party and dance scenes. This place is huge but i found the ambience quite disappointing! We preferred go at the top and i felt it was pretty crowded. Even the food items werenÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t that great i felt. We ordered the hammered chicken slider, pizza, kabab platter and some chicken popcorn. The LIIT was pretty mild when we ordered for the first time but the second time it was strong and nice!'), ('Rated 4.0', 'RATED\n  Craving some chaat in this beautiful Bangalore weather ?\nGol Gappa stuffed with chicken and potato at Hammered, yes chicken!! Apprehensive initially but after the first bite all the apprehension went out the window!\nJust perfect for an evening snack ! .'), ('Rated 4.0', "RATED\n  Was very surprised to see a huge setup - can't make out from outside. A real nice ambience to have a good get together both inside and outside. 5/5\nFull house it was - the people at the Bar looked quite cheerful and helpful unlike the floor Managers or serving staffs. 3/5\nBar - didn't have much choice but the KF draught Beer served was just fine. 4/5\nFood - didn't lack anything but could have been better. Chicken GolGappa is a must try. 4/5\nWould recommend and visit again for sure :)"), ('Rated 3.0', "RATED\n  Heard quite alot about the place and it wasn't that bad ( wasn't that great too). The food and service was nice,the staff was courteous. But the place in itself was not clean. The ambience wasn't that great but it's apt for people who want to go and watch a live match. The music was good,dj had some really nice collection. But if you are thinking that it is a place for a date or a nice dine out,then you are totally wrong. Go there after a hectic day at office or may be just for the beer and hookah! Shouldn't keep alot of expectations in terms of ambience."), ('Rated 3.0', 'RATED\n  Was there for the Atul Khatri live show. We reached early to grab a few drinks and eat before the show started.\nThe bar is average - nothing great. We ordered wine and a few cocktails. The service was very slow that day\nwith 3 ppl at the bar counter - it was a bit too crowded.\nWe ordered a few starters and hookah - starters were ok.\nIt was a bit too spicy for our taste.\nWe then went to eat from the Zomato Gold menu - paneer And Chicken - both were good.\nOverall, a good open space but nothing really stood out from the bar or kitchen.'), ('Rated 3.0', 'RATED\n  Had heard a lot about hammered and its party and dance scenes. This place is huge but i found the ambience quite disappointing! We preferred go at the top and i felt it was pretty crowded. Even the food items werenÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t that great i felt. We ordered the hammered chicken slider, pizza, kabab platter and some chicken popcorn. The LIIT was pretty mild when we ordered for the first time but the second time it was strong and nice!'), ('Rated 4.0', 'RATED\n  Craving some chaat in this beautiful Bangalore weather ?\nGol Gappa stuffed with chicken and potato at Hammered, yes chicken!! Apprehensive initially but after the first bite all the apprehension went out the window!\nJust perfect for an evening snack ! .'), ('Rated 4.0', "RATED\n  Was very surprised to see a huge setup - can't make out from outside. A real nice ambience to have a good get together both inside and outside. 5/5\nFull house it was - the people at the Bar looked quite cheerful and helpful unlike the floor Managers or serving staffs. 3/5\nBar - didn't have much choice but the KF draught Beer served was just fine. 4/5\nFood - didn't lack anything but could have been better. Chicken GolGappa is a must try. 4/5\nWould recommend and visit again for sure :)"), ('Rated 3.0', "RATED\n  Heard quite alot about the place and it wasn't that bad ( wasn't that great too). The food and service was nice,the staff was courteous. But the place in itself was not clean. The ambience wasn't that great but it's apt for people who want to go and watch a live match. The music was good,dj had some really nice collection. But if you are thinking that it is a place for a date or a nice dine out,then you are totally wrong. Go there after a hectic day at office or may be just for the beer and hookah! Shouldn't keep alot of expectations in terms of ambience."), ('Rated 3.0', 'RATED\n  Was there for the Atul Khatri live show. We reached early to grab a few drinks and eat before the show started.\nThe bar is average - nothing great. We ordered wine and a few cocktails. The service was very slow that day\nwith 3 ppl at the bar counter - it was a bit too crowded.\nWe ordered a few starters and hookah - starters were ok.\nIt was a bit too spicy for our taste.\nWe then went to eat from the Zomato Gold menu - paneer And Chicken - both were good.\nOverall, a good open space but nothing really stood out from the bar or kitchen.'), ('Rated 3.0', 'RATED\n  Had heard a lot about hammered and its party and dance scenes. This place is huge but i found the ambience quite disappointing! We preferred go at the top and i felt it was pretty crowded. Even the food items werenÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t that great i felt. We ordered the hammered chicken slider, pizza, kabab platter and some chicken popcorn. The LIIT was pretty mild when we ordered for the first time but the second time it was strong and nice!'), ('Rated 4.0', 'RATED\n  Craving some chaat in this beautiful Bangalore weather ?\nGol Gappa stuffed with chicken and potato at Hammered, yes chicken!! Apprehensive initially but after the first bite all the apprehension went out the window!\nJust perfect for an evening snack ! .'), ('Rated 4.0', "RATED\n  Was very surprised to see a huge setup - can't make out from outside. A real nice ambience to have a good get together both inside and outside. 5/5\nFull house it was - the people at the Bar looked quite cheerful and helpful unlike the floor Managers or serving staffs. 3/5\nBar - didn't have much choice but the KF draught Beer served was just fine. 4/5\nFood - didn't lack anything but could have been better. Chicken GolGappa is a must try. 4/5\nWould recommend and visit again for sure :)"), ('Rated 3.0', "RATED\n  Heard quite alot about the place and it wasn't that bad ( wasn't that great too). The food and service was nice,the staff was courteous. But the place in itself was not clean. The ambience wasn't that great but it's apt for people who want to go and watch a live match. The music was good,dj had some really nice collection. But if you are thinking that it is a place for a date or a nice dine out,then you are totally wrong. Go there after a hectic day at office or may be just for the beer and hookah! Shouldn't keep alot of expectations in terms of ambience."), ('Rated 3.0', 'RATED\n  Was there for the Atul Khatri live show. We reached early to grab a few drinks and eat before the show started.\nThe bar is average - nothing great. We ordered wine and a few cocktails. The service was very slow that day\nwith 3 ppl at the bar counter - it was a bit too crowded.\nWe ordered a few starters and hookah - starters were ok.\nIt was a bit too spicy for our taste.\nWe then went to eat from the Zomato Gold menu - paneer And Chicken - both were good.\nOverall, a good open space but nothing really stood out from the bar or kitchen.'), ('Rated 5.0', 'RATED\n  The ambience is very much appreciatable. The food and drinks are very good. The DJ and the entire atmosphere is good. An Excellent place for a leisure time.\nMr. Osa served us and his service was extremely bad. We never got the food on time. We had to call him 3-4 times in order to change the hookah pots. He never responded.'), ('Rated 3.0', "RATED\n  When they started off.. they were doing so great and this was one of the 'must go' places for me. The standard of food has dropped altogether. But they are not that bad. They have just a beautiful ambiance but they need to really work on maintaining it, specially the interiors. The service was really really poor, which we told them there as well. It would have been a 2.5 for me for the experience but a 3 just because we could click good pictures of us."), ('Rated 5.0', "RATED\n  Everyone just go get hammered Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨ !!\n\nI will happily give 5 star rating , they excel in everything\n\nAmbience 5/5\nStaff 5 /5\nFood 4/5\nMusic 5/5\nDrinks 5/5\n\nBriefing abt food\nManchow soup : was spicy and perfect Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nLord of rings : good but tasted lil bland\nCrumbed paneer stick: unique and excellent\nSliders: it's wasn't that great ,it tasted like normal burger\nPasta : just okie\nWake up call cocktail : awesome with hazelnut flavour\n\nAll this with affordable price and amazing crowd . Overall it's best place to hang out."), ('Rated 4.0', "RATED\n  Hammered is a good place to hang out with frnds.. I have been there in a group of 4.... Best thing is hukka available over there.. We didn't find near RT nagar area anywhere else...\n\nNice Ambience and cost was not that high.."), ('Rated 4.0', 'RATED\n  Went to this place for a lunch on a weekday afternoon. The place was decently crowded and the rustic decor & ambience was amazing! The floor manager and staff were very courteous. The chicken GOL gappa and Chilly fish are definitely a must try. The service could have been a little more prompt and quick. Overall a really nice place.'), ('Rated 5.0', 'RATED\n  The ambience is very much appreciatable. The food and drinks are very good. The DJ and the entire atmosphere is good. An Excellent place for a leisure time.\nMr. Osa served us and his service was extremely bad. We never got the food on time. We had to call him 3-4 times in order to change the hookah pots. He never responded.'), ('Rated 3.0', "RATED\n  When they started off.. they were doing so great and this was one of the 'must go' places for me. The standard of food has dropped altogether. But they are not that bad. They have just a beautiful ambiance but they need to really work on maintaining it, specially the interiors. The service was really really poor, which we told them there as well. It would have been a 2.5 for me for the experience but a 3 just because we could click good pictures of us."), ('Rated 5.0', "RATED\n  Everyone just go get hammered Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨ !!\n\nI will happily give 5 star rating , they excel in everything\n\nAmbience 5/5\nStaff 5 /5\nFood 4/5\nMusic 5/5\nDrinks 5/5\n\nBriefing abt food\nManchow soup : was spicy and perfect Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nLord of rings : good but tasted lil bland\nCrumbed paneer stick: unique and excellent\nSliders: it's wasn't that great ,it tasted like normal burger\nPasta : just okie\nWake up call cocktail : awesome with hazelnut flavour\n\nAll this with affordable price and amazing crowd . Overall it's best place to hang out."), ('Rated 4.0', "RATED\n  Hammered is a good place to hang out with frnds.. I have been there in a group of 4.... Best thing is hukka available over there.. We didn't find near RT nagar area anywhere else...\n\nNice Ambience and cost was not that high.."), ('Rated 4.0', 'RATED\n  Went to this place for a lunch on a weekday afternoon. The place was decently crowded and the rustic decor & ambience was amazing! The floor manager and staff were very courteous. The chicken GOL gappa and Chilly fish are definitely a must try. The service could have been a little more prompt and quick. Overall a really nice place.'), ('Rated 5.0', 'RATED\n  The ambience is very much appreciatable. The food and drinks are very good. The DJ and the entire atmosphere is good. An Excellent place for a leisure time.\nMr. Osa served us and his service was extremely bad. We never got the food on time. We had to call him 3-4 times in order to change the hookah pots. He never responded.'), ('Rated 3.0', "RATED\n  When they started off.. they were doing so great and this was one of the 'must go' places for me. The standard of food has dropped altogether. But they are not that bad. They have just a beautiful ambiance but they need to really work on maintaining it, specially the interiors. The service was really really poor, which we told them there as well. It would have been a 2.5 for me for the experience but a 3 just because we could click good pictures of us."), ('Rated 5.0', "RATED\n  Everyone just go get hammered Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨ !!\n\nI will happily give 5 star rating , they excel in everything\n\nAmbience 5/5\nStaff 5 /5\nFood 4/5\nMusic 5/5\nDrinks 5/5\n\nBriefing abt food\nManchow soup : was spicy and perfect Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nLord of rings : good but tasted lil bland\nCrumbed paneer stick: unique and excellent\nSliders: it's wasn't that great ,it tasted like normal burger\nPasta : just okie\nWake up call cocktail : awesome with hazelnut flavour\n\nAll this with affordable price and amazing crowd . Overall it's best place to hang out."), ('Rated 4.0', "RATED\n  Hammered is a good place to hang out with frnds.. I have been there in a group of 4.... Best thing is hukka available over there.. We didn't find near RT nagar area anywhere else...\n\nNice Ambience and cost was not that high.."), ('Rated 4.0', 'RATED\n  Went to this place for a lunch on a weekday afternoon. The place was decently crowded and the rustic decor & ambience was amazing! The floor manager and staff were very courteous. The chicken GOL gappa and Chilly fish are definitely a must try. The service could have been a little more prompt and quick. Overall a really nice place.'), ('Rated 5.0', 'RATED\n  The ambience is very much appreciatable. The food and drinks are very good. The DJ and the entire atmosphere is good. An Excellent place for a leisure time.\nMr. Osa served us and his service was extremely bad. We never got the food on time. We had to call him 3-4 times in order to change the hookah pots. He never responded.'), ('Rated 3.0', "RATED\n  When they started off.. they were doing so great and this was one of the 'must go' places for me. The standard of food has dropped altogether. But they are not that bad. They have just a beautiful ambiance but they need to really work on maintaining it, specially the interiors. The service was really really poor, which we told them there as well. It would have been a 2.5 for me for the experience but a 3 just because we could click good pictures of us."), ('Rated 5.0', "RATED\n  Everyone just go get hammered Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨ !!\n\nI will happily give 5 star rating , they excel in everything\n\nAmbience 5/5\nStaff 5 /5\nFood 4/5\nMusic 5/5\nDrinks 5/5\n\nBriefing abt food\nManchow soup : was spicy and perfect Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nLord of rings : good but tasted lil bland\nCrumbed paneer stick: unique and excellent\nSliders: it's wasn't that great ,it tasted like normal burger\nPasta : just okie\nWake up call cocktail : awesome with hazelnut flavour\n\nAll this with affordable price and amazing crowd . Overall it's best place to hang out."), ('Rated 4.0', "RATED\n  Hammered is a good place to hang out with frnds.. I have been there in a group of 4.... Best thing is hukka available over there.. We didn't find near RT nagar area anywhere else...\n\nNice Ambience and cost was not that high.."), ('Rated 4.0', 'RATED\n  Went to this place for a lunch on a weekday afternoon. The place was decently crowded and the rustic decor & ambience was amazing! The floor manager and staff were very courteous. The chicken GOL gappa and Chilly fish are definitely a must try. The service could have been a little more prompt and quick. Overall a really nice place.'), ('Rated 5.0', 'RATED\n  The ambience is very much appreciatable. The food and drinks are very good. The DJ and the entire atmosphere is good. An Excellent place for a leisure time.\nMr. Osa served us and his service was extremely bad. We never got the food on time. We had to call him 3-4 times in order to change the hookah pots. He never responded.'), ('Rated 3.0', "RATED\n  When they started off.. they were doing so great and this was one of the 'must go' places for me. The standard of food has dropped altogether. But they are not that bad. They have just a beautiful ambiance but they need to really work on maintaining it, specially the interiors. The service was really really poor, which we told them there as well. It would have been a 2.5 for me for the experience but a 3 just because we could click good pictures of us."), ('Rated 5.0', "RATED\n  Everyone just go get hammered Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨ !!\n\nI will happily give 5 star rating , they excel in everything\n\nAmbience 5/5\nStaff 5 /5\nFood 4/5\nMusic 5/5\nDrinks 5/5\n\nBriefing abt food\nManchow soup : was spicy and perfect Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nLord of rings : good but tasted lil bland\nCrumbed paneer stick: unique and excellent\nSliders: it's wasn't that great ,it tasted like normal burger\nPasta : just okie\nWake up call cocktail : awesome with hazelnut flavour\n\nAll this with affordable price and amazing crowd . Overall it's best place to hang out."), ('Rated 4.0', "RATED\n  Hammered is a good place to hang out with frnds.. I have been there in a group of 4.... Best thing is hukka available over there.. We didn't find near RT nagar area anywhere else...\n\nNice Ambience and cost was not that high.."), ('Rated 4.0', 'RATED\n  Went to this place for a lunch on a weekday afternoon. The place was decently crowded and the rustic decor & ambience was amazing! The floor manager and staff were very courteous. The chicken GOL gappa and Chilly fish are definitely a must try. The service could have been a little more prompt and quick. Overall a really nice place.'), ('Rated 4.0', 'RATED\n  I visited this place two times in 3 days. The reason for me to go there was, it was just near to my place. The staff there is also nice, however the selection of beer is very poor they had only one beer and that was Kingfisher and hence just the three stars.\n\nthe rest of the food as energy drinks served by them was really amazing.'), ('Rated 5.0', 'RATED\n  Lovely place,staff and good food.Very sad that no beer available.Prabhu is very friendly and he serve my table which is excellent service.Also thanks to Mimin,Arbinda and deepanka,visit you again soon!'), ('Rated 4.0', 'RATED\n  Great place for Hookah and mixologist gets you high by striking right chords ! Food is good for most part, service is awesome. Will go again'), ('Rated 5.0', 'RATED\n  The only place on Cunningham Road worth going for Hookah...\n\nOn the more serious note, the ambience has changed so drastically since its F-Bar days and offers a more lively and less gothic experience. The food is exceptionally good. One of the few places that serve a good Hookah and Alcohol in the heart of the City.'), ('Rated 4.0', 'RATED\n  I visited this place two times in 3 days. The reason for me to go there was, it was just near to my place. The staff there is also nice, however the selection of beer is very poor they had only one beer and that was Kingfisher and hence just the three stars.\n\nthe rest of the food as energy drinks served by them was really amazing.'), ('Rated 5.0', 'RATED\n  Lovely place,staff and good food.Very sad that no beer available.Prabhu is very friendly and he serve my table which is excellent service.Also thanks to Mimin,Arbinda and deepanka,visit you again soon!'), ('Rated 4.0', 'RATED\n  Great place for Hookah and mixologist gets you high by striking right chords ! Food is good for most part, service is awesome. Will go again'), ('Rated 5.0', 'RATED\n  The only place on Cunningham Road worth going for Hookah...\n\nOn the more serious note, the ambience has changed so drastically since its F-Bar days and offers a more lively and less gothic experience. The food is exceptionally good. One of the few places that serve a good Hookah and Alcohol in the heart of the City.'), ('Rated 4.0', 'RATED\n  I visited this place two times in 3 days. The reason for me to go there was, it was just near to my place. The staff there is also nice, however the selection of beer is very poor they had only one beer and that was Kingfisher and hence just the three stars.\n\nthe rest of the food as energy drinks served by them was really amazing.'), ('Rated 5.0', 'RATED\n  Lovely place,staff and good food.Very sad that no beer available.Prabhu is very friendly and he serve my table which is excellent service.Also thanks to Mimin,Arbinda and deepanka,visit you again soon!'), ('Rated 4.0', 'RATED\n  Great place for Hookah and mixologist gets you high by striking right chords ! Food is good for most part, service is awesome. Will go again'), ('Rated 5.0', 'RATED\n  The only place on Cunningham Road worth going for Hookah...\n\nOn the more serious note, the ambience has changed so drastically since its F-Bar days and offers a more lively and less gothic experience. The food is exceptionally good. One of the few places that serve a good Hookah and Alcohol in the heart of the City.'), ('Rated 4.0', 'RATED\n  Location : cunningham road, 3 KM from church street.\nValue for money.\nAmbience was awesome with live music and football screening.\nSlow service.\nWe ordered nachos, pizza and pasta. Nachos and pizza were really good but pasta(white sauce) was okish. Haukka was cheap and was good.\nA must go place with couple of friends. Table reservations recommend.'), ('Rated 5.0', 'RATED\n  I can discribe this place in three words YoungÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dDynamicÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8eTastyÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b. It was a delight to visit this place. Mila Jula Chicken Kabab starter is a must try. It was tender and juicy. We also ordered Chicken BBQ pizza which was good. And I must tell you that you cannot miss the desert - Paan Panna Cotta with Gulkand Sauce. It just gave a kick to my taste buds\n\nThe music added to the awesome experience here. There is outdoor seating. And to top it all they also have Hookah. I could not ask for more\U0001f929 cheap rates for Hookah compared to others and the service is excellent. A pocket friendly deal overall. I really cannot compliant about anything here. Amazing place. Guys you should definitely visit this place and you would not regret.\n\nFood - 5\nService - 5\nMusic - 4\nHookah Service - 5\nAmbience - 5'), ('Rated 4.0', 'RATED\n  One of the most chilled place to go out to. Lovely ambience, good food and amazing hookah Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95 make sure you grab a seat upstairs to enjoy some great musicÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95'), ('Rated 4.0', "RATED\n  Went for Sunday brunch and it was 35 degrees so preferred to stay indoors on 1st floor. Place had loud music for Sunday afternoon so conversation was bit difficult. Food was good and place is very reasonable priced so don't expect a very upmarket crowd. Decor is rusty but good and place is pretty spacious. Will recommend for food n chilling time. Service was super slow, so wondering how they manage hectic weekend nights."), ('Rated 4.0', 'RATED\n  Location : cunningham road, 3 KM from church street.\nValue for money.\nAmbience was awesome with live music and football screening.\nSlow service.\nWe ordered nachos, pizza and pasta. Nachos and pizza were really good but pasta(white sauce) was okish. Haukka was cheap and was good.\nA must go place with couple of friends. Table reservations recommend.'), ('Rated 5.0', 'RATED\n  I can discribe this place in three words YoungÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dDynamicÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8eTastyÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b. It was a delight to visit this place. Mila Jula Chicken Kabab starter is a must try. It was tender and juicy. We also ordered Chicken BBQ pizza which was good. And I must tell you that you cannot miss the desert - Paan Panna Cotta with Gulkand Sauce. It just gave a kick to my taste buds\n\nThe music added to the awesome experience here. There is outdoor seating. And to top it all they also have Hookah. I could not ask for more\U0001f929 cheap rates for Hookah compared to others and the service is excellent. A pocket friendly deal overall. I really cannot compliant about anything here. Amazing place. Guys you should definitely visit this place and you would not regret.\n\nFood - 5\nService - 5\nMusic - 4\nHookah Service - 5\nAmbience - 5'), ('Rated 4.0', 'RATED\n  One of the most chilled place to go out to. Lovely ambience, good food and amazing hookah Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95 make sure you grab a seat upstairs to enjoy some great musicÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95'), ('Rated 4.0', "RATED\n  Went for Sunday brunch and it was 35 degrees so preferred to stay indoors on 1st floor. Place had loud music for Sunday afternoon so conversation was bit difficult. Food was good and place is very reasonable priced so don't expect a very upmarket crowd. Decor is rusty but good and place is pretty spacious. Will recommend for food n chilling time. Service was super slow, so wondering how they manage hectic weekend nights."), ('Rated 4.0', "RATED\n  This place offers amazing food and there are no two ways about it. We ordered spicy toddy, fries and their tenderloin steak. The tenderloin steak was mind blowing with a silky brown sauce that perfectly balanced out the flavours of mushroom and pepper, it's a piece of heaven on a plate, be it even the sides like mashed potato or the grilled veggies. The desert didn't disappoint either, we had Paan Panacotta with Gulkhand sauce..a must try for all food adventurists.\nThis place is value for money....ambience takes a back seat here and the food for sure is the star."), ('Rated 4.0', 'RATED\n  Food was good. Loved the hammered special biriyani. Serves 2 people. Drinks were fine.\nAmbience was awesome, both indoor and outdoor.\nAlso the open first floor.\nService was a bit late.\nGood place to hangout and chill.\nFamily friendly!\nCost is a bit high compared to other places.'), ('Rated 4.0', 'RATED\n  I just casually looked up Zomato to find some good places to hang out and discovered hammered. An awesome place to chill with really good food. Service is top notch. Madhav was really helpful. Andhra chilly chicken is for legends.'), ('Rated 5.0', 'RATED\n  Personal favourite place in the city..have been here so many times that I donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t have a count !!\nAwesome ambience!!\nGreat food!!\nGood drinks!!\nCourteous staff!!\nAverage hookah !!\nZomato gold is a bonus:)'), ('Rated 5.0', 'RATED\n  Really funny environment. Great service n food is amazing. Shubhash n Deepak are great host.wud recommend my friends to visit this place again n again.'), ('Rated 4.0', "RATED\n  This place offers amazing food and there are no two ways about it. We ordered spicy toddy, fries and their tenderloin steak. The tenderloin steak was mind blowing with a silky brown sauce that perfectly balanced out the flavours of mushroom and pepper, it's a piece of heaven on a plate, be it even the sides like mashed potato or the grilled veggies. The desert didn't disappoint either, we had Paan Panacotta with Gulkhand sauce..a must try for all food adventurists.\nThis place is value for money....ambience takes a back seat here and the food for sure is the star."), ('Rated 4.0', 'RATED\n  Food was good. Loved the hammered special biriyani. Serves 2 people. Drinks were fine.\nAmbience was awesome, both indoor and outdoor.\nAlso the open first floor.\nService was a bit late.\nGood place to hangout and chill.\nFamily friendly!\nCost is a bit high compared to other places.'), ('Rated 4.0', 'RATED\n  I just casually looked up Zomato to find some good places to hang out and discovered hammered. An awesome place to chill with really good food. Service is top notch. Madhav was really helpful. Andhra chilly chicken is for legends.'), ('Rated 5.0', 'RATED\n  Personal favourite place in the city..have been here so many times that I donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t have a count !!\nAwesome ambience!!\nGreat food!!\nGood drinks!!\nCourteous staff!!\nAverage hookah !!\nZomato gold is a bonus:)'), ('Rated 5.0', 'RATED\n  Really funny environment. Great service n food is amazing. Shubhash n Deepak are great host.wud recommend my friends to visit this place again n again.'), ('Rated 4.0', "RATED\n  This place offers amazing food and there are no two ways about it. We ordered spicy toddy, fries and their tenderloin steak. The tenderloin steak was mind blowing with a silky brown sauce that perfectly balanced out the flavours of mushroom and pepper, it's a piece of heaven on a plate, be it even the sides like mashed potato or the grilled veggies. The desert didn't disappoint either, we had Paan Panacotta with Gulkhand sauce..a must try for all food adventurists.\nThis place is value for money....ambience takes a back seat here and the food for sure is the star."), ('Rated 4.0', 'RATED\n  Food was good. Loved the hammered special biriyani. Serves 2 people. Drinks were fine.\nAmbience was awesome, both indoor and outdoor.\nAlso the open first floor.\nService was a bit late.\nGood place to hangout and chill.\nFamily friendly!\nCost is a bit high compared to other places.'), ('Rated 4.0', 'RATED\n  I just casually looked up Zomato to find some good places to hang out and discovered hammered. An awesome place to chill with really good food. Service is top notch. Madhav was really helpful. Andhra chilly chicken is for legends.'), ('Rated 5.0', 'RATED\n  Personal favourite place in the city..have been here so many times that I donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t have a count !!\nAwesome ambience!!\nGreat food!!\nGood drinks!!\nCourteous staff!!\nAverage hookah !!\nZomato gold is a bonus:)'), ('Rated 5.0', 'RATED\n  Really funny environment. Great service n food is amazing. Shubhash n Deepak are great host.wud recommend my friends to visit this place again n again.'), ('Rated 4.0', "RATED\n  Amazing place for an hangout ambiance is amazing and lots of varieties in food and drinks. Quick service and really polite staff. The foosball table is great attraction as it allows people to just chill out. Only complaint was that music is too loud and staff didn't do anything about that. This place is a best if people want to just chill enjoy and eat and drink"), ('Rated 4.0', 'RATED\n  The theme of this pub is good. It has many cool areas to click some amazing profile pics. It has a bar and lots of seating areas. On the first floor it has pool and some loud music.\n\nHookah and drinks are available. Hookah is comparably cheap when compared to others.. Considering that it is situated in the centre of the city.\n\nWe had ordered lemon chicken pops, French fries, Tequila, drought beer, mocktails, pizza. The quality was good and taste was amazing.\nDefinitely try this pub.'), ('Rated 5.0', 'RATED\n  One of the most happening pub in bangalore! Located in the popular bylanes of cunningham Road. Alcohol and hookah is served here. Trendy crowd. I tried the mocktails and were good. I tried the non veg platter, it was fantastic.'), ('Rated 4.0', "RATED\n  Been here so many times will continue to do so because of the availability of five of the best things that cater to pretty much everyone:\n\n1) Food\n2) Sports games on TV\n3) Snooker Table\n4) Alcohol\n5) Hookah\n\nWhen you get everything at one place why bother somewhere else? The food is awesome. Be it the Tum Nacho, Cheese Bullets or the Sliders. All are well made and the prices are reasonable too. The hookah is around 500 rupees and they keep changing the coal regularly which isn't a bad deal.\n\nI would give it a 5 star rating but they service quality dips as the number of people increase at the place and also it gets very stuffy at times due to the huge amount of smoke in the air so they definitely have to work on their ventilation."), ('Rated 5.0', 'RATED\n  Great ambiance . Ordered for pesto pasta, arrabiata pasta along with chicken wings and hookah. Food was good. Service is great too.\nWould like to visit again someday.'), ('Rated 4.0', "RATED\n  Amazing place for an hangout ambiance is amazing and lots of varieties in food and drinks. Quick service and really polite staff. The foosball table is great attraction as it allows people to just chill out. Only complaint was that music is too loud and staff didn't do anything about that. This place is a best if people want to just chill enjoy and eat and drink"), ('Rated 4.0', 'RATED\n  The theme of this pub is good. It has many cool areas to click some amazing profile pics. It has a bar and lots of seating areas. On the first floor it has pool and some loud music.\n\nHookah and drinks are available. Hookah is comparably cheap when compared to others.. Considering that it is situated in the centre of the city.\n\nWe had ordered lemon chicken pops, French fries, Tequila, drought beer, mocktails, pizza. The quality was good and taste was amazing.\nDefinitely try this pub.'), ('Rated 5.0', 'RATED\n  One of the most happening pub in bangalore! Located in the popular bylanes of cunningham Road. Alcohol and hookah is served here. Trendy crowd. I tried the mocktails and were good. I tried the non veg platter, it was fantastic.'), ('Rated 4.0', "RATED\n  Been here so many times will continue to do so because of the availability of five of the best things that cater to pretty much everyone:\n\n1) Food\n2) Sports games on TV\n3) Snooker Table\n4) Alcohol\n5) Hookah\n\nWhen you get everything at one place why bother somewhere else? The food is awesome. Be it the Tum Nacho, Cheese Bullets or the Sliders. All are well made and the prices are reasonable too. The hookah is around 500 rupees and they keep changing the coal regularly which isn't a bad deal.\n\nI would give it a 5 star rating but they service quality dips as the number of people increase at the place and also it gets very stuffy at times due to the huge amount of smoke in the air so they definitely have to work on their ventilation."), ('Rated 5.0', 'RATED\n  Great ambiance . Ordered for pesto pasta, arrabiata pasta along with chicken wings and hookah. Food was good. Service is great too.\nWould like to visit again someday.'), ('Rated 4.0', "RATED\n  Amazing place for an hangout ambiance is amazing and lots of varieties in food and drinks. Quick service and really polite staff. The foosball table is great attraction as it allows people to just chill out. Only complaint was that music is too loud and staff didn't do anything about that. This place is a best if people want to just chill enjoy and eat and drink"), ('Rated 4.0', 'RATED\n  The theme of this pub is good. It has many cool areas to click some amazing profile pics. It has a bar and lots of seating areas. On the first floor it has pool and some loud music.\n\nHookah and drinks are available. Hookah is comparably cheap when compared to others.. Considering that it is situated in the centre of the city.\n\nWe had ordered lemon chicken pops, French fries, Tequila, drought beer, mocktails, pizza. The quality was good and taste was amazing.\nDefinitely try this pub.'), ('Rated 5.0', 'RATED\n  One of the most happening pub in bangalore! Located in the popular bylanes of cunningham Road. Alcohol and hookah is served here. Trendy crowd. I tried the mocktails and were good. I tried the non veg platter, it was fantastic.'), ('Rated 4.0', "RATED\n  Been here so many times will continue to do so because of the availability of five of the best things that cater to pretty much everyone:\n\n1) Food\n2) Sports games on TV\n3) Snooker Table\n4) Alcohol\n5) Hookah\n\nWhen you get everything at one place why bother somewhere else? The food is awesome. Be it the Tum Nacho, Cheese Bullets or the Sliders. All are well made and the prices are reasonable too. The hookah is around 500 rupees and they keep changing the coal regularly which isn't a bad deal.\n\nI would give it a 5 star rating but they service quality dips as the number of people increase at the place and also it gets very stuffy at times due to the huge amount of smoke in the air so they definitely have to work on their ventilation."), ('Rated 5.0', 'RATED\n  Great ambiance . Ordered for pesto pasta, arrabiata pasta along with chicken wings and hookah. Food was good. Service is great too.\nWould like to visit again someday.'), ('Rated 4.0', "RATED\n  Amazing place for an hangout ambiance is amazing and lots of varieties in food and drinks. Quick service and really polite staff. The foosball table is great attraction as it allows people to just chill out. Only complaint was that music is too loud and staff didn't do anything about that. This place is a best if people want to just chill enjoy and eat and drink"), ('Rated 4.0', 'RATED\n  The theme of this pub is good. It has many cool areas to click some amazing profile pics. It has a bar and lots of seating areas. On the first floor it has pool and some loud music.\n\nHookah and drinks are available. Hookah is comparably cheap when compared to others.. Considering that it is situated in the centre of the city.\n\nWe had ordered lemon chicken pops, French fries, Tequila, drought beer, mocktails, pizza. The quality was good and taste was amazing.\nDefinitely try this pub.'), ('Rated 5.0', 'RATED\n  One of the most happening pub in bangalore! Located in the popular bylanes of cunningham Road. Alcohol and hookah is served here. Trendy crowd. I tried the mocktails and were good. I tried the non veg platter, it was fantastic.'), ('Rated 4.0', "RATED\n  Been here so many times will continue to do so because of the availability of five of the best things that cater to pretty much everyone:\n\n1) Food\n2) Sports games on TV\n3) Snooker Table\n4) Alcohol\n5) Hookah\n\nWhen you get everything at one place why bother somewhere else? The food is awesome. Be it the Tum Nacho, Cheese Bullets or the Sliders. All are well made and the prices are reasonable too. The hookah is around 500 rupees and they keep changing the coal regularly which isn't a bad deal.\n\nI would give it a 5 star rating but they service quality dips as the number of people increase at the place and also it gets very stuffy at times due to the huge amount of smoke in the air so they definitely have to work on their ventilation."), ('Rated 5.0', 'RATED\n  Great ambiance . Ordered for pesto pasta, arrabiata pasta along with chicken wings and hookah. Food was good. Service is great too.\nWould like to visit again someday.'), ('Rated 3.0', "RATED\n  I have been to this place twice in a month. Felt the service was a dissapointment here.\n\nOn my first visit, the waiters were clueless about our table though we had reserved one already. Good thing that they accepted Zomato Gold without any hassle\n\nOn my second visit, the service time took more than 1 hour for 3-4 dishes to be prepared.\n\nOn the other side, Food was great and so was the ambience.\n\nSo itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s an okay'ish place with good options and good crowd but not so with good service."), ('Rated 4.0', 'RATED\n  Before I come to the food, let me just take a moment and appreciate how artistic this place is. From the cute blue ambassador to colourful graffitis, absolutely loved the walls!\nCame here for lunch on a weekday, we ordered Chicken mila jula kebab which was a combination of 4 kinds of chicken tikkas - it was really delicious, especially the hariyali tikka. We also got paneer sufiyana, and it was soft and yummy.\nFor main course, we were confused between which pizza to order, so we went with the assorted mini pizzas which bring in the flavour of all kinds. Was a little disappointed by the pizzas as they were just okayish in taste. However since the overall experience was great, will give this place a 4! :)\nWould love to come here again at night for drinks.'), ('Rated 5.0', "RATED\n  We've had some great hangouts at Hammered, but this one was made even better, thanks to the service by the staff, mainly by Prabhu. We'll be coming back more often now. :)"), ('Rated 4.0', "RATED\n  Great place for hangout with friends. Staff are polite. The mood is quite peppy and nice. Starters ordered were all good. It's more apt for a large group"), ('Rated 4.0', 'RATED\n  Nice place to get HAMMERED!!\nWell, fo me the best part of this place was the ambience and the Hammered sliders Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94\nOther than this- JalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o Cheese bullets( literally filled with awesome cheese) and Chilli black pepper potato were worth the try\nHookahs ainÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t expensive too!\nI would definitely recommend this place worth multiple visits\n#Hee-haw'), ('Rated 3.0', "RATED\n  I have been to this place twice in a month. Felt the service was a dissapointment here.\n\nOn my first visit, the waiters were clueless about our table though we had reserved one already. Good thing that they accepted Zomato Gold without any hassle\n\nOn my second visit, the service time took more than 1 hour for 3-4 dishes to be prepared.\n\nOn the other side, Food was great and so was the ambience.\n\nSo itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s an okay'ish place with good options and good crowd but not so with good service."), ('Rated 4.0', 'RATED\n  Before I come to the food, let me just take a moment and appreciate how artistic this place is. From the cute blue ambassador to colourful graffitis, absolutely loved the walls!\nCame here for lunch on a weekday, we ordered Chicken mila jula kebab which was a combination of 4 kinds of chicken tikkas - it was really delicious, especially the hariyali tikka. We also got paneer sufiyana, and it was soft and yummy.\nFor main course, we were confused between which pizza to order, so we went with the assorted mini pizzas which bring in the flavour of all kinds. Was a little disappointed by the pizzas as they were just okayish in taste. However since the overall experience was great, will give this place a 4! :)\nWould love to come here again at night for drinks.'), ('Rated 5.0', "RATED\n  We've had some great hangouts at Hammered, but this one was made even better, thanks to the service by the staff, mainly by Prabhu. We'll be coming back more often now. :)"), ('Rated 4.0', "RATED\n  Great place for hangout with friends. Staff are polite. The mood is quite peppy and nice. Starters ordered were all good. It's more apt for a large group"), ('Rated 4.0', 'RATED\n  Nice place to get HAMMERED!!\nWell, fo me the best part of this place was the ambience and the Hammered sliders Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94\nOther than this- JalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o Cheese bullets( literally filled with awesome cheese) and Chilli black pepper potato were worth the try\nHookahs ainÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t expensive too!\nI would definitely recommend this place worth multiple visits\n#Hee-haw'), ('Rated 3.0', "RATED\n  I have been to this place twice in a month. Felt the service was a dissapointment here.\n\nOn my first visit, the waiters were clueless about our table though we had reserved one already. Good thing that they accepted Zomato Gold without any hassle\n\nOn my second visit, the service time took more than 1 hour for 3-4 dishes to be prepared.\n\nOn the other side, Food was great and so was the ambience.\n\nSo itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s an okay'ish place with good options and good crowd but not so with good service."), ('Rated 4.0', 'RATED\n  Before I come to the food, let me just take a moment and appreciate how artistic this place is. From the cute blue ambassador to colourful graffitis, absolutely loved the walls!\nCame here for lunch on a weekday, we ordered Chicken mila jula kebab which was a combination of 4 kinds of chicken tikkas - it was really delicious, especially the hariyali tikka. We also got paneer sufiyana, and it was soft and yummy.\nFor main course, we were confused between which pizza to order, so we went with the assorted mini pizzas which bring in the flavour of all kinds. Was a little disappointed by the pizzas as they were just okayish in taste. However since the overall experience was great, will give this place a 4! :)\nWould love to come here again at night for drinks.'), ('Rated 5.0', "RATED\n  We've had some great hangouts at Hammered, but this one was made even better, thanks to the service by the staff, mainly by Prabhu. We'll be coming back more often now. :)"), ('Rated 4.0', "RATED\n  Great place for hangout with friends. Staff are polite. The mood is quite peppy and nice. Starters ordered were all good. It's more apt for a large group"), ('Rated 4.0', 'RATED\n  Nice place to get HAMMERED!!\nWell, fo me the best part of this place was the ambience and the Hammered sliders Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94\nOther than this- JalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o Cheese bullets( literally filled with awesome cheese) and Chilli black pepper potato were worth the try\nHookahs ainÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t expensive too!\nI would definitely recommend this place worth multiple visits\n#Hee-haw'), ('Rated 5.0', "RATED\n  This place is LAF, the whole setup is spread across a huge space unlike the matchboxes of Koramangala and Indiranagar.\nPub is themed. The service was good. Food was amazing. There's French table where you can play snooker while having booze. The only problem is there's no place for parking. As you've to risk yourself and park at a no parking area. Overall an amazing place to be.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
The best budget juice shop for delivery (around the Indiranagar area) during those fasting days or vegetarian days. They have an optimal juice menu and I love the chikku with dry fruit. The fresh strawberry shake, pista shake are ok types. Fruit salads also ok, They serve good wheatgrass juice and this needs to be had over the counter, not available for delivery.  Sandwich I have tried only the mushroom corn one which was average. Corn, Palak, Mushroom, if you don't like these veggies, you may not find too many other options. Packing is decent so for juices, milkshakes etc. safe for delivery."), ('Rated 4.0', 'RATED\n  This place might be a tiny one but one of my favorites. It is always busy and the people working are keeping up with the pace. The watermelon, pineapple juice are my regulars here. Butterfruit and mango milkshake(seasonal) are heavens when chilled. I have tried their paneer grill and capsicum cheese grill sandwiches which are perfect breakfast or snacks.'), ('Rated 5.0', "RATED\n  Pocket friendly, tastes good . Good for sandwiches and evening chats their pav bhaji and pista milk shake my favourite . Definitely worth trying. Only problem is u won't find a place to seat and have food.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
This place is right opposite to the theatre and remember you'll have to climb up all the way up to 4th floor as there's no lift. You will be tired by the time you reach unless you are a fitness freak.\nWell for starters, asked the man to give me his best shot of hookah so we could come back and surprisingly he gave us the worst of it. Asked for a strong but got a tasteless flavoured was a mix of 3.\nAvoid masala french fries as they were bad, it looked like he just put all the Mirchi he had in the kitchen..\nI wish I would have taken the pic.\nA cool place to hangout when your girl is getting a hair treatment in perimeter salon..\nNevertheless it was okay I hope they would improve their ambience and service.\n\nFood - 1/5\nService - 2/5\nAmbience - 3/5\n\nPlease follow my foodpage Instagram - whenfoodiesmet .")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4
Best place in BTM 2nd stage for fish food. Pocket friendly and hygiene. My favourite for lunch is fish meal. Lot of fish varieties are available here.'), ('Rated 1.0', 'RATED\n  This restaurent cheated..i took parcel fish meal....usually the neer dosa will be there in the meal...but they did not give..cheaters pls dnt go for this restaurent'), ('Rated 3.0', 'RATED\n  Please change location map address evry time it will be problem need to call them'), ('Rated 4.0', 'RATED\n  fish was more spicy but nice one'), ('Rated 3.0', 'RATED\n  Ordered hot and sour chicken soup and junglee chicken on a Friday evening. The soup was okayish but there was nothing hot and sour about it, was more of a manchow without noodles! It just had a hell load of black pepper. The junglee chicken was more of an egg curry with some pieces of\nin it. The taste of food here is average'), ('Rated 4.0', 'RATED\n  A brand new restaurant in BTM layout.\nVery friendly staff and reminds me of a restaurant in Udupi/Mangalore.\nLoved their Kori rotti and Bangda Rava fry.\nPocket friendly.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
Nice ambience and a great collection of Beer - that goes with the name. \nFood is average, not too many options to choose from. Overall a 3.5/5 will do justice to this place'), ('Rated 5.0', 'RATED\n  Last moment plan on a Tuesday which work out to be great. If U have zomato gold then cheery on a cake. Funtastic Food, amazing place to spend a time with friends or ur date. Must try is onion rings and culutta chilly chicken with LIT or chilled Beer. Wonderful service and peaceful atmosphere.'), ('Rated 5.0', 'RATED\n  THE BEER CAFE ?????????\nToday I visited this place to chill out with my friends, had a good time here ambiance was great, nice bar view, we ordered BBQ wings and all the 3 non-veg pizzas it was really delicious and great combination with our beer, and we met Vivek who served us he was friendly with us, he suggested us to the good food, had a great time, must visit here, pocket friendly and great atmosphere,\nI will visit here again because of the service.\n-- thank you Vivek'), ('Rated 5.0', 'RATED\n  After hearing a lot of abt this restaurant... finally there with my friends..\nAll starters were really good... we tried chilly chicken, seekh kebab, soya parche, & Pepproni pizza....\nComing to the service... friendly staff.....can say.. one of my best experience.. thank you team "The Beer Cafe" especially Mr Ganesh ...for making our day mamorible....\nWe tried crafted beer.. only.. ..\nWe will come again with same expectations'), ('Rated 3.0', "RATED\n  Was here for a team dinner. Got the top floor to ourselves by booking early. Cool ambience with great music! Ample seating and a snooker table to play around. Good seating in adjoining balcony to catch fresh air. Beer order came pretty fast. However, food was a different story. There was lots of delay in getting our orders. Plates had to be requested when food appears without plates! Seriously? Food was scrumptious though. Great place to hang out for beer. Wouldn't go there with a team for dinner again."), ('Rated 5.0', 'RATED\n  Had a late Lunch for New Year here. Great place, lovely service, yummy food. Good options for drinks. My choice was the non veg platter. Will surely go again.'), ('Rated 4.0', "RATED\n  It's nice place to hangout wid yours friends,, we came here first this place, but its really good and ambience also, food was to yammy.\nStaff are very friendly and courteous, helpful. Little bit service its slow but its fine,,,\nWe will visit again for sure..."), ('Rated 4.0', "RATED\n  Visited this place on a Friday evening, it wasn't that crowded so I don't think reservation is needed.\nThe ambience of this place is really good. A nice place to hang out with your friends, also has snooker.\nWe ordered the beer braised chicken, and it was really tasty. The chicken was cooked really well and was melting in the mouth.\nFor veg, we ordered pander makhni which was also really tasty.\nThe service was great too :)"), ('Rated 3.0', 'RATED\n  Cool and casual place for the beer lovers. It has a 4 page beer menu having most of the known premium beers and they also provide geist craft beer. Food is not that great. Ambience is fine. Remains decently crowded on weekends. Good place for dinner and booze with friends. Also provides outdoor seating.'), ('Rated 3.0', "RATED\n  First of all, the Koramangala Beer cafe is a pretty place and seems a calm, quiet hang out place. It is easily accessible,but parking is an issue.\nThe service is quite questionable. The servers are confused and often forget orders.\nI have practically had every vegetarian dish on the menu and they have pretty average food. The food quality has dropped considerably over the past few months. Their pasta tends to be undercooked. Their pizzas are fairly decent. Their nachos were our favourite once upon a time, but the quality and taste of that has gone down as well. The cheese sauce tastes milky and is goopy. Their starters are also fairly decent. The quantity of the food is good.\nThey often have live performances which are sometimes annoying, but sometimes quite interesting. The outdoor is quiet and mosquito infested.\nIt's a nice place to chill with friends as well as for couples since nobody including the staff bothers you. They tend to not show up for ages after serving you once."), ('Rated 4.0', 'RATED\n  Pretty ambience. Went on a Wednesday evening- hardly any crowd. Tried the German stien and LIIT in beverages- decent made | no complains there.\nIn food, had a chicken platter and cheese chicken fingers. It was average. Nothing to write about, but it will do.\nThe beer was something though. Plain, musky and a tad bit of fruity taste. Good texture, even better color. It had ale- and I am a fan of ale.\nRecommended for the variety of beers they serve.\nCheers!'), ('Rated 4.0', 'RATED\n  Having some time on Sunday evening, decided to try this place out. Enjoyed the dishes, especially the Calcutta chilli chicken and Chicken supreme pizza. The ambience was also good for a group hangout.\n\nThe service was slow. Expect it to improve.'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a good hang out spot for students and youngsters to just grab an evening drink, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a completely pocket friendly and chill place with a pool table to help you enjoy yourself a bit more.?'), ('Rated 4.0', "RATED\n  It's 2nd time we are hitting this place and yes now one of our favorite. Ambiance is good both Indore and outdoor seating was there. We preffered sitting Indore for the 1st tower and shifted to outside for the 2nd one.\n\nBeer was really good. Staffs was very approachable, but some having very less knowledge about the menu (maybe new ones) over all it's a delightful experience.\n\nWe ordered culctta chilly chicken which was really good and chicken olivety which is ok with the taste."), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', "RATED\n  The place is cozy and nice. The ambience and the decor of the cafe is really cool. We went on an weekend evening, it was not that much crowded so you can also visit and book table there. We had ordered beer, chicken pizza and chicken seekh kabab.. Food was really good , but I felt beer was kind of ok ok..Again this is purely subjective ?\nIt's nice place to hangout with friends.. can play pool also there. Staffs are very friendly and good.\n\nBut the price may come on little heavier side on the pocket.\n\nOverall experience was really nice."), ('Rated 5.0', 'RATED\n  This place is very close to my office, hence we often visit this place for office treats :)\n\nThey got an amazing way to retain their customers by giving points each time you make a visit. They got pretty cool interiors with a variety of list on their menu.\n\nComing to drinks, l tried all their drinks, which are quite potent and curated.\n\nFood:\n\nWe ordered for Chilly Paneer, Potato bravas, Garden fresh pizza, and Chicken nachos. Food wise, I felt all their dishes were average.\n\nDefinitely recommend this place. Service was prompt, with good food. Will definitely visit this place very soon.\n\nAmbiance: 4/5\nFood: 3.5/5\nDrinks: 4/5'), ('Rated 4.0', "RATED\n  A let's go again kinda place, been here a couple of times. It has indoors and outdoors seating, smoking on the outside. Full bar is available, they have a lot of beer brands to choose from. The ambience is modern and quirky yet comforting, the food is great and one can always come back to this place to sit down with friends and have a chat over few beers! All in all a great place they also have a pool table, until next time, cheers!\n4/5 Ambience, 3.5/5 Service, 4/5 Menu and Beer options."), ('Rated 2.0', "RATED\n  Had visited for lunch . When we entered around 1.45 pm , not one customer was present and we asked they said usually it is crowded but today not aware...we placed the order for chicken oliveti and fried onions rings..after 5 mins he comes and informs that chicken oliveti takes around 45 mins..which he could have informed while taking the order. Second it is a total turn off that there are mosquitoes around and we informed the hotel that mosquitoes are there they informed that they will put a mosquitoes coil and bought a mosquito coil and put it under the table. Food was average and we did not enjoy the food may be because of the above circumstances. Dips which was given with onion rings was very sour it tasted like spoilt ..I asked for a change in dip , I asked for mayonnaise it came after i almost finished with my onion rings\nService is not up to the mark as they don't understand and you need to remind them again.\n\nAmbience is good and the place is very vast .."), ('Rated 3.5', 'RATED\n  Great place to hangout with friends.. Pretty good ambience with live karaoke.. Food was decent.. Service was on the slower side..\n\nFood-3.5 Ambience-4 Service-3'), ('Rated 5.0', 'RATED\n  Great service. Good food.. been a regular customer here. The pepperoni and chicken supreme pizza is a must try. A good place for a regular hangout.'), ('Rated 3.0', 'RATED\n  even though food was tasting great. cleanliness is what i found it could be made better. there were some water stains found on the spoons and dust prevailing on the plates. this can be addressed and pretty sure that management will take measure to address it.'), ('Rated 5.0', 'RATED\n  Good food\nReasonable price\nGood amount of in-house brands of beer\nThanks to John for complimentary marsala papad\nWill visit again soon\nLovely ambience\n\nLoved every thing'), ('Rated 4.0', "RATED\n  A pretty neat place. A really good place to hangout with your gang.\nA bit expensive though, but good if you're a gold member.\nWe ordered beef steak and chicken supreme pizza. The steak was really good. The pizza was kind of okayish. Quantity is fine.\nService is very average. Don't expect courteous staff. However i think as it's a bit expensive place (from it's competitors), service should be really good and paid attention to.\nAmbiance is pretty good. Large, and not cozy. Not very comfortable seating.\n\nOverall i would rate this place around 3.5/5."), ('Rated 5.0', "RATED\n  I went with my family to this place on a Saturday night and luckily we got a place to sit. There was an amazing band playing that night. The singer, especially, took all our song request and one time when he didn't know the lyrics of a song I requested him to sing, he called me up to sing it for the audience. Very sweet gesture. I don't know about the audience who had to listen to me :P, but I definitely had fun")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
it's not a fancy or big restaurant but the food is mouth watering. Especially for college and school students this restaurant is must to go because the food is delicious as well as in Very reasonable price , my personal favourite in the restaurant was chicken briyani and chicken lolipop ? and Oreo shake also and their service from the staffs is also very good"), ('Rated 5.0', 'RATED\n  After coming to Bangalore this place has been my favourite. I personally visited this place, not very big or fancy but the food is decent enough for two people. The staff here is very polite. My highly recommended dishes are: chicken lolipop (with gravy),chicken schezwan fried rice and chilli chicken.'), ('Rated 1.0', 'RATED\n  So we have been ordering from this place since a long time..The food is good and at an affordable price..But lately the delivery has become so late..Yesterday we ordered around 8pm only to receive our order almost 3 hours later in between several calls were made assuring us it would take 15 mins.\nVery disappointed and this is not even the first time.'), ('Rated 5.0', 'RATED\n  Really very good.. My favourite restaurant'), ('Rated 1.0', "RATED\n  Suggest to have a professional customer approach.. if you reaching the customer via phone.. don't approach in rude way it's not a good way to run"), ('Rated 5.0', 'RATED\n  Tasty food reasonable price and decent service 5* ??'), ('Rated 4.0', 'RATED\n  awesome indian food. good quantity and faster home delivery. nice place to hangout . the cheese kebab, gobi chilly, malai tikka and shorba are my favourite'), ('Rated 1.0', 'RATED\n  Given food was Smelling, No good. The chatani is bad and smells badly. Also Malai Tikka was not good. Overall bad experience. Restument should take care this'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Must try... tasty and quality food.. worth for money..'), ('Rated 5.0', 'RATED\n  sooo good'), ('Rated 4.0', 'RATED\n  Good service'), ('Rated 2.0', 'RATED\n  The food was OK but too much oil...'), ('Rated 2.0', 'RATED\n  Gobi manchurian was good other than this nothing was good'), ('Rated 1.0', 'RATED\n  Most 3rd class food quality.'), ('Rated 3.0', 'RATED\n  Chapati is bad'), ('Rated 5.0', 'RATED\n  nice tasty food..'), ('Rated 1.0', 'RATED\n  bad... sub standard.. choupsey so bad.. mixing random curry'), ('Rated 1.0', 'RATED\n  the food was so spicy and hot that we have to throw it'), ('Rated 5.0', 'RATED\n  Delivered on time. taste and quality of the food is very gud. Must try..'), ('Rated 3.0', 'RATED\n  Chapati is bad'), ('Rated 5.0', 'RATED\n  nice tasty food..'), ('Rated 1.0', 'RATED\n  bad... sub standard.. choupsey so bad.. mixing random curry'), ('Rated 1.0', 'RATED\n  the food was so spicy and hot that we have to throw it'), ('Rated 5.0', 'RATED\n  Delivered on time. taste and quality of the food is very gud. Must try..'), ('Rated 3.0', 'RATED\n  Chapati is bad'), ('Rated 5.0', 'RATED\n  nice tasty food..'), ('Rated 1.0', 'RATED\n  bad... sub standard.. choupsey so bad.. mixing random curry'), ('Rated 1.0', 'RATED\n  the food was so spicy and hot that we have to throw it'), ('Rated 5.0', 'RATED\n  Delivered on time. taste and quality of the food is very gud. Must try..'), ('Rated 5.0', 'RATED\n  Nice.. Delivered on time. Good Taste and High quality.. please reduce the food color..'), ('Rated 1.0', 'RATED\n  food was delivered very very very very very very very very very very very very LATE'), ('Rated 2.0', 'RATED\n  too oily'), ('Rated 5.0', 'RATED\n  good service....value for money'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Nice.. Delivered on time. Good Taste and High quality.. please reduce the food color..'), ('Rated 1.0', 'RATED\n  food was delivered very very very very very very very very very very very very LATE'), ('Rated 2.0', 'RATED\n  too oily'), ('Rated 5.0', 'RATED\n  good service....value for money'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Nice.. Delivered on time. Good Taste and High quality.. please reduce the food color..'), ('Rated 1.0', 'RATED\n  food was delivered very very very very very very very very very very very very LATE'), ('Rated 2.0', 'RATED\n  too oily'), ('Rated 5.0', 'RATED\n  good service....value for money'), ('Rated 5.0', 'RATED\n  good'), ('Rated 4.0', 'RATED\n  Good amalgamation of the masalas and very affordable'), ('Rated 2.0', 'RATED\n  the palak chicken had full of stone and tundoory chicken was high dark burning'), ('Rated 1.0', "RATED\n  it's not drums of heaven"), ('Rated 4.0', 'RATED\n  Good'), ('Rated 5.0', "RATED\n  it's good"), ('Rated 4.0', 'RATED\n  Good amalgamation of the masalas and very affordable'), ('Rated 2.0', 'RATED\n  the palak chicken had full of stone and tundoory chicken was high dark burning'), ('Rated 1.0', "RATED\n  it's not drums of heaven"), ('Rated 4.0', 'RATED\n  Good'), ('Rated 5.0', "RATED\n  it's good"), ('Rated 4.0', 'RATED\n  Good amalgamation of the masalas and very affordable'), ('Rated 2.0', 'RATED\n  the palak chicken had full of stone and tundoory chicken was high dark burning'), ('Rated 1.0', "RATED\n  it's not drums of heaven"), ('Rated 4.0', 'RATED\n  Good'), ('Rated 5.0', "RATED\n  it's good"), ('Rated 2.0', 'RATED\n  quality'), ('Rated 5.0', 'RATED\n  nice'), ('Rated 3.0', 'RATED\n  taste could be better'), ('Rated 1.0', 'RATED\n  No taste, had to throw half of it'), ('Rated 4.0', 'RATED\n  Loved it'), ('Rated 2.0', 'RATED\n  quality'), ('Rated 5.0', 'RATED\n  nice'), ('Rated 3.0', 'RATED\n  taste could be better'), ('Rated 1.0', 'RATED\n  No taste, had to throw half of it'), ('Rated 4.0', 'RATED\n  Loved it'), ('Rated 4.0', 'RATED\n  packing should improve'), ('Rated 4.0', 'RATED\n  good value for money'), ('Rated 3.0', 'RATED\n  not bad..'), ('Rated 4.0', 'RATED\n  Good test'), ('Rated 4.0', 'RATED\n  Rice was bit uncooked. Good taste and quality.'), ('Rated 4.0', 'RATED\n  packing should improve'), ('Rated 4.0', 'RATED\n  good value for money'), ('Rated 3.0', 'RATED\n  not bad..'), ('Rated 4.0', 'RATED\n  Good test'), ('Rated 4.0', 'RATED\n  Rice was bit uncooked. Good taste and quality.'), ('Rated 4.0', 'RATED\n  packing should improve'), ('Rated 4.0', 'RATED\n  good value for money'), ('Rated 3.0', 'RATED\n  not bad..'), ('Rated 4.0', 'RATED\n  Good test'), ('Rated 4.0', 'RATED\n  Rice was bit uncooked. Good taste and quality.'), ('Rated 4.0', 'RATED\n  packing should improve'), ('Rated 4.0', 'RATED\n  good value for money'), ('Rated 3.0', 'RATED\n  not bad..'), ('Rated 4.0', 'RATED\n  Good test'), ('Rated 4.0', 'RATED\n  Rice was bit uncooked. Good taste and quality.'), ('Rated 2.5', 'RATED\n  This is a small eatery located about 200mtrs from Huskur gate bus stop on the Ananthnagar road.\nThe ambiance for in house eating is not worth it due to too much noise from kitchen and staff due to lack of space. \nThey provide service on call or through Foodpanda. But the food here is very unpredictable. \nAt times the food is way too oily making it difficult for consumption, no consistency on quality which was observed through multiple orders that i have placed with this restaurant.'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 4.5', "RATED\n  Very tasty food, all cooked properly. Tandoori tastes really good. Shawarma seems like it's speciality! Quantity worth for the price. Restaurant is owned by Malayalis so specializes in Kerala cuisine."), ('Rated 1.0', 'RATED\n  not cooked properly'), ('Rated 5.0', 'RATED\n  food is very Good'), ('Rated 2.5', 'RATED\n  This is a small eatery located about 200mtrs from Huskur gate bus stop on the Ananthnagar road.\nThe ambiance for in house eating is not worth it due to too much noise from kitchen and staff due to lack of space. \nThey provide service on call or through Foodpanda. But the food here is very unpredictable. \nAt times the food is way too oily making it difficult for consumption, no consistency on quality which was observed through multiple orders that i have placed with this restaurant.'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 4.5', "RATED\n  Very tasty food, all cooked properly. Tandoori tastes really good. Shawarma seems like it's speciality! Quantity worth for the price. Restaurant is owned by Malayalis so specializes in Kerala cuisine."), ('Rated 1.0', 'RATED\n  not cooked properly'), ('Rated 5.0', 'RATED\n  food is very Good'), ('Rated 2.5', 'RATED\n  This is a small eatery located about 200mtrs from Huskur gate bus stop on the Ananthnagar road.\nThe ambiance for in house eating is not worth it due to too much noise from kitchen and staff due to lack of space. \nThey provide service on call or through Foodpanda. But the food here is very unpredictable. \nAt times the food is way too oily making it difficult for consumption, no consistency on quality which was observed through multiple orders that i have placed with this restaurant.'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 4.5', "RATED\n  Very tasty food, all cooked properly. Tandoori tastes really good. Shawarma seems like it's speciality! Quantity worth for the price. Restaurant is owned by Malayalis so specializes in Kerala cuisine."), ('Rated 1.0', 'RATED\n  not cooked properly'), ('Rated 5.0', 'RATED\n  food is very Good'), ('Rated 5.0', 'RATED\n  regular customer of tikka kabab I love it.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
A perfectly cozy and cute cafe hidden away inside Jeevan Bhima Nagar!\n\nJust discovered them on my way back from work with a lovely decor, cane furniture and cool graffiti attracted me to give them a try.\n\nThe prices were extremely reasonable and loved the quantity too. The staff was super duper friendly and made me feel at home from the minute I walked in.\n\nI'd definitely come back with my friends to try their mains while we play board games/ UNO with the gang!\n\nAmple Street Parking available and they accept PayTM too!"), ('Rated 5.0', 'RATED\n  Food is really tasty!! Worth it.. Do visit! They have both veg and non veg options. Plus they serve beverages too. Best place to visit if you are looking for peace with tasty food.'), ('Rated 4.5', 'RATED\n  Nice pizzas, sandwiches both veg and non-vegetarian. They make nice hot chocolate. Jenga, Uno etc. Nice place to chill with friends and family.'), ('Rated 4.0', 'RATED\n  Yummy Cappuccino and Banana Walnut cake !\nWill definitely visit the place again.Nice and cozy place to hangout.Must visit for the people of Indira Nagar and around.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4
Order cheese Dosa and rava onion dosa online through zomato, but quality and taste were not good. Curry was not at all tasty and chutney and sambar were ok ok.'), ('Rated 1.0', 'RATED\n  medu vada was salty'), ('Rated 1.0', 'RATED\n  4 masala dosa 2 idly 1 rava idly and only a small insufficient portion of chutney..what a joke..'), ('Rated 5.0', 'RATED\n  Ordered Masala Dosa combo.\nDelivery was on time.Good Packing.\nDosa was tasty.Quantity of chutney,saambhar and coffee was more when compared to other places.\nOverall a very good experience'), ('Rated 1.0', 'RATED\n  ordered for biryani but gave pulao'), ('Rated 1.0', 'RATED\n  Horrible experience with zomato delivery boy....he has gone to different location but is blaming me for not entering exact location.....he was very rude....he did not even had change.....m not going to order again.....last time I had ordered and the guy came exactly to the location.......then what happened this time......??'), ('Rated 3.0', 'RATED\n  Very spicy!'), ('Rated 5.0', 'RATED\n  A very delicious and variety taste of vegetarian foods served here. Best choosen place for #vegans in journey of taste. Not sure of ambience though, as food was delivered home and eager to visit the restaurant.'), ('Rated 4.0', 'RATED\n  food was good but was not delivered on time'), ('Rated 5.0', 'RATED\n  Dosas, The mushroom biriyani and the vegan tomato besan omlette are among the ones I ordered here and were quite tasty. Its in the corner of horamavu main road and quite accessible.'), ('Rated 5.0', 'RATED\n  very good'), ('Rated 5.0', 'RATED\n  good'), ('Rated 2.0', "RATED\n  Baby corn Manchurian was good, other main course items like Veg Pulao and Kadai Paneer are very spicy; just can't eat. Had stomach upset on nextday ..."), ('Rated 4.0', 'RATED\n  Nice food'), ('Rated 1.0', "RATED\n  Breakfast quantity is a joke. I ordered since I really loved their veg options for lunch but today's delay in delivery and quantity is really disappointing"), ('Rated 4.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  package received in broken condition'), ('Rated 4.0', 'RATED\n  Decent roti and paneer combo. Much better than the last order.'), ('Rated 1.0', 'RATED\n  I HAD OREDERED FOR 2 PLATES OF IDILY VADA BUT I HAVE GOT THE DELIEVERY OF ONLY 1 PLATE, AND WHEN I CALLED TO THE HOTEL PPL DEY SAID DEY LL REFUND THE MONEY FOR 1 PLATE BUT TILL NOW I HAVE NOT RECIEVED THE MONEY... KINDLY SEE THE DETAIL AND REFUND THE MONEY..'), ('Rated 4.0', 'RATED\n  it was bit more spicy, else it would have been nice'), ('Rated 4.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  package received in broken condition'), ('Rated 4.0', 'RATED\n  Decent roti and paneer combo. Much better than the last order.'), ('Rated 1.0', 'RATED\n  I HAD OREDERED FOR 2 PLATES OF IDILY VADA BUT I HAVE GOT THE DELIEVERY OF ONLY 1 PLATE, AND WHEN I CALLED TO THE HOTEL PPL DEY SAID DEY LL REFUND THE MONEY FOR 1 PLATE BUT TILL NOW I HAVE NOT RECIEVED THE MONEY... KINDLY SEE THE DETAIL AND REFUND THE MONEY..'), ('Rated 4.0', 'RATED\n  it was bit more spicy, else it would have been nice'), ('Rated 4.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  package received in broken condition'), ('Rated 4.0', 'RATED\n  Decent roti and paneer combo. Much better than the last order.'), ('Rated 1.0', 'RATED\n  I HAD OREDERED FOR 2 PLATES OF IDILY VADA BUT I HAVE GOT THE DELIEVERY OF ONLY 1 PLATE, AND WHEN I CALLED TO THE HOTEL PPL DEY SAID DEY LL REFUND THE MONEY FOR 1 PLATE BUT TILL NOW I HAVE NOT RECIEVED THE MONEY... KINDLY SEE THE DETAIL AND REFUND THE MONEY..'), ('Rated 4.0', 'RATED\n  it was bit more spicy, else it would have been nice'), ('Rated 4.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  package received in broken condition'), ('Rated 4.0', 'RATED\n  Decent roti and paneer combo. Much better than the last order.'), ('Rated 1.0', 'RATED\n  I HAD OREDERED FOR 2 PLATES OF IDILY VADA BUT I HAVE GOT THE DELIEVERY OF ONLY 1 PLATE, AND WHEN I CALLED TO THE HOTEL PPL DEY SAID DEY LL REFUND THE MONEY FOR 1 PLATE BUT TILL NOW I HAVE NOT RECIEVED THE MONEY... KINDLY SEE THE DETAIL AND REFUND THE MONEY..'), ('Rated 4.0', 'RATED\n  it was bit more spicy, else it would have been nice'), ('Rated 3.0', "RATED\n  Need to improve bit in Curry's ."), ('Rated 4.0', "RATED\n  IT'S Good...."), ('Rated 3.0', 'RATED\n  utappam is not gud'), ('Rated 4.0', 'RATED\n  super'), ('Rated 3.0', 'RATED\n  Butter naan was not cooked properly'), ('Rated 3.0', "RATED\n  Need to improve bit in Curry's ."), ('Rated 4.0', "RATED\n  IT'S Good...."), ('Rated 3.0', 'RATED\n  utappam is not gud'), ('Rated 4.0', 'RATED\n  super'), ('Rated 3.0', 'RATED\n  Butter naan was not cooked properly'), ('Rated 3.0', "RATED\n  Need to improve bit in Curry's ."), ('Rated 4.0', "RATED\n  IT'S Good...."), ('Rated 3.0', 'RATED\n  utappam is not gud'), ('Rated 4.0', 'RATED\n  super'), ('Rated 3.0', 'RATED\n  Butter naan was not cooked properly'), ('Rated 2.0', 'RATED\n  not nice'), ('Rated 5.0', 'RATED\n  Very quick delivery'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 3.0', "RATED\n  I ordered roti Curry ghee Rice and paneer Manchurian. Ghee Rice taste was very nice. roti curry also good but didn't like brijal curry. Paneer Manchurian was not at all upto the mark."), ('Rated 4.0', 'RATED\n  Quantity of sambhar was very less'), ('Rated 2.0', 'RATED\n  not nice'), ('Rated 5.0', 'RATED\n  Very quick delivery'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 3.0', "RATED\n  I ordered roti Curry ghee Rice and paneer Manchurian. Ghee Rice taste was very nice. roti curry also good but didn't like brijal curry. Paneer Manchurian was not at all upto the mark."), ('Rated 4.0', 'RATED\n  Quantity of sambhar was very less'), ('Rated 2.0', 'RATED\n  not nice'), ('Rated 5.0', 'RATED\n  Very quick delivery'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 3.0', "RATED\n  I ordered roti Curry ghee Rice and paneer Manchurian. Ghee Rice taste was very nice. roti curry also good but didn't like brijal curry. Paneer Manchurian was not at all upto the mark."), ('Rated 4.0', 'RATED\n  Quantity of sambhar was very less'), ('Rated 2.0', 'RATED\n  not nice'), ('Rated 5.0', 'RATED\n  Very quick delivery'), ('Rated 4.0', 'RATED\n  Good'), ('Rated 3.0', "RATED\n  I ordered roti Curry ghee Rice and paneer Manchurian. Ghee Rice taste was very nice. roti curry also good but didn't like brijal curry. Paneer Manchurian was not at all upto the mark."), ('Rated 4.0', 'RATED\n  Quantity of sambhar was very less'), ('Rated 5.0', "RATED\n  Very friendly staff amazing veg food very good quality a must try restaurant and cherry on the cake is it's very pocket friendly keep up the good work very good job"), ('Rated 3.0', 'RATED\n  no lemon was served inspite of giving instructions'), ('Rated 3.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Good paneer taste.'), ('Rated 4.0', 'RATED\n  Great food'), ('Rated 5.0', "RATED\n  Very friendly staff amazing veg food very good quality a must try restaurant and cherry on the cake is it's very pocket friendly keep up the good work very good job"), ('Rated 3.0', 'RATED\n  no lemon was served inspite of giving instructions'), ('Rated 3.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Good paneer taste.'), ('Rated 4.0', 'RATED\n  Great food'), ('Rated 5.0', "RATED\n  Very friendly staff amazing veg food very good quality a must try restaurant and cherry on the cake is it's very pocket friendly keep up the good work very good job"), ('Rated 3.0', 'RATED\n  no lemon was served inspite of giving instructions'), ('Rated 3.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Good paneer taste.'), ('Rated 4.0', 'RATED\n  Great food'), ('Rated 1.0', 'RATED\n  I order tea but I recived cafre'), ('Rated 1.0', 'RATED\n  Poor quality especially the chinese cuisine... Plz tell the cook to add less soya in fried rice...'), ('Rated 3.0', 'RATED\n  ok'), ('Rated 4.0', 'RATED\n  The food was good, also reasonably priced. Would strongly recommend to try it out.'), ('Rated 3.0', 'RATED\n  Good'), ('Rated 1.0', 'RATED\n  I order tea but I recived cafre'), ('Rated 1.0', 'RATED\n  Poor quality especially the chinese cuisine... Plz tell the cook to add less soya in fried rice...'), ('Rated 3.0', 'RATED\n  ok'), ('Rated 4.0', 'RATED\n  The food was good, also reasonably priced. Would strongly recommend to try it out.'), ('Rated 3.0', 'RATED\n  Good'), ('Rated 1.0', 'RATED\n  I order tea but I recived cafre'), ('Rated 1.0', 'RATED\n  Poor quality especially the chinese cuisine... Plz tell the cook to add less soya in fried rice...'), ('Rated 3.0', 'RATED\n  ok'), ('Rated 4.0', 'RATED\n  The food was good, also reasonably priced. Would strongly recommend to try it out.'), ('Rated 3.0', 'RATED\n  Good'), ('Rated 1.0', 'RATED\n  We order extra curry also which is not received in the order....'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Taste was good.'), ('Rated 2.0', 'RATED\n \nvery less chutney and Sagu given'), ('Rated 1.0', 'RATED\n  not good'), ('Rated 1.0', 'RATED\n  We order extra curry also which is not received in the order....'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Taste was good.'), ('Rated 2.0', 'RATED\n \nvery less chutney and Sagu given'), ('Rated 1.0', 'RATED\n  not good'), ('Rated 1.0', 'RATED\n  We order extra curry also which is not received in the order....'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Taste was good.'), ('Rated 2.0', 'RATED\n \nvery less chutney and Sagu given'), ('Rated 1.0', 'RATED\n  not good'), ('Rated 1.0', 'RATED\n  We order extra curry also which is not received in the order....'), ('Rated 5.0', 'RATED\n  good'), ('Rated 5.0', 'RATED\n  Taste was good.'), ('Rated 2.0', 'RATED\n \nvery less chutney and Sagu given'), ('Rated 1.0', 'RATED\n  not good'), ('Rated 1.0', 'RATED\n  I did not receive it, please check'), ('Rated 1.0', 'RATED\n  i am nt received extra curry'), ('Rated 4.0', 'RATED\n  notbad'), ('Rated 3.0', 'RATED\n  Rava dosa was not parcelled properly. They have make bigger boxes for bigger dosas.'), ('Rated 1.0', 'RATED\n  I did not receive it, please check'), ('Rated 1.0', 'RATED\n  i am nt received extra curry'), ('Rated 4.0', 'RATED\n  notbad'), ('Rated 3.0', 'RATED\n  Rava dosa was not parcelled properly. They have make bigger boxes for bigger dosas.'), ('Rated 1.0', 'RATED\n  I did not receive it, please check'), ('Rated 1.0', 'RATED\n  i am nt received extra curry'), ('Rated 4.0', 'RATED\n  notbad'), ('Rated 3.0', 'RATED\n  Rava dosa was not parcelled properly. They have make bigger boxes for bigger dosas.'), ('Rated 1.0', 'RATED\n  tasteless with no quality maintained'), ('Rated 3.0', 'RATED\n  Description written is not clear, order tawa roti gave tandoori'), ('Rated 4.0', 'RATED\n  NiCe'), ('Rated 3.0', 'RATED\n  OK ok'), ('Rated 5.0', 'RATED\n  Satisfied with the food. Thank you Sri Devi Sagar restaurant.'), ('Rated 1.0', 'RATED\n  tasteless with no quality maintained'), ('Rated 3.0', 'RATED\n  Description written is not clear, order tawa roti gave tandoori'), ('Rated 4.0', 'RATED\n  NiCe'), ('Rated 3.0', 'RATED\n  OK ok'), ('Rated 5.0', 'RATED\n  Satisfied with the food. Thank you Sri Devi Sagar restaurant.'), ('Rated 1.0', 'RATED\n  tasteless with no quality maintained'), ('Rated 3.0', 'RATED\n  Description written is not clear, order tawa roti gave tandoori'), ('Rated 4.0', 'RATED\n  NiCe'), ('Rated 3.0', 'RATED\n  OK ok'), ('Rated 5.0', 'RATED\n  Satisfied with the food. Thank you Sri Devi Sagar restaurant.'), ('Rated 3.0', 'RATED\n  breads are all made of maida, be it either roti or nan..'), ('Rated 2.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  taste could be better.'), ('Rated 3.0', 'RATED\n  packing was not proper'), ('Rated 5.0', 'RATED\n  Gud'), ('Rated 3.0', 'RATED\n  breads are all made of maida, be it either roti or nan..'), ('Rated 2.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  taste could be better.'), ('Rated 3.0', 'RATED\n  packing was not proper'), ('Rated 5.0', 'RATED\n  Gud'), ('Rated 3.0', 'RATED\n  breads are all made of maida, be it either roti or nan..'), ('Rated 2.0', 'RATED\n  good'), ('Rated 2.0', 'RATED\n  taste could be better.'), ('Rated 3.0', 'RATED\n  packing was not proper'), ('Rated 5.0', 'RATED\n  Gud')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
Had meat eater and chicken full smash 10". Both were amazing. The amount of chicken added on top is way more than other pizza brands. Taste was good too. Must try.'), ('Rated 5.0', 'RATED\n  This is best pizza outlet ever ..specially heres taste is laajawab i love chicken tikka and keema specially pizza is mine favourite...i suggest everyone to order pizza from here only best outlet ever'), ('Rated 5.0', 'RATED\n  Being our all time favourite place to order pizza from.\nTried-\nTex mex special\nSpicy paneer\nCrowded house.\nQuality food and quality packing as always by mojo.\nDilevery done on time.\nFood-4.5/5.'), ('Rated 5.0', 'RATED\n  Mojo pizza is a best place to have some nice pizza which have amazing flavours and satisfy u fully. I have ordered one panner pizza one farm house pizza one cheese garlic bread and on choco lava cake which all are yummy!!. Also delivery is fast. Do try.'), ('Rated 5.0', "RATED\n  Mojo pizza is just my favorite choice when it comes to Italian. No matter where I am in the country, it has always served me really well. The efficiency, taste, delivery time everything is perfect when it comes to mojo.\nMy personal favorite is the Farm fresh pizza. I am a non vegeterian but this is better than any chicken pizza I've ever had.\nAlong with this I always prefer a side which is garlic bread sticks. Can never order a pizza without this.\nThe best pizza delivery chain throughout the country."), ('Rated 5.0', 'RATED\n  Mojo pizzaaaaaaaaaaÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95I am a big pizzaaaa lover and Mojo Pizza is actually Savage for foodie like me.The hunger pang is always satisfied thanks to amazing quality and quantity of Mojo pizza. I ordered their American Pepperoni pizza, smoked chicken wings and garlic bread sticks..The first thing that attracts me towards this pizza outlet is their excellent packing and amazing delivery time .The pizza was served piping hot and the cheese burst with thin layer of pizza beard and amazing topping of pepperoni and veggies just melted in mouth and i was still craving for more.He bread stick was served with cheese dip and was baked well and soft.I think Mojo pizza seves best quality chicken wings..THANKS MOJO PIZZA TEAM..Keep serving the best with amazing customer service and quick delivery..Kudos'), ('Rated 5.0', "RATED\n  The best quality food chicken wings pizza's all Versions are available here they give quick delivery best packing food quality is osm test is very good\nSpecially the cheese one is best pizza in my manu card and non veg is fantastic it's to good and desert is also very good specially choco lava cake is my favourite test is osm guy's go and try this once then you know it's really fabulous. thanks mojo pizza."), ('Rated 5.0', 'RATED\n  MojoPizza!\nAlways satisfying, my favourite pizza place.\nI ordered spicy paneer pizza with cheese blast - the Doubly Loaded cheese had me like yumm.\nThe crowded house was awesome too.\nAs always i loved the pizza and really fast service.\nDo order Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d'), ('Rated 5.0', 'RATED\n  Mojo pizza is one of the best places to order pizza from.\nSo I recently tried the Garlic Breadsticks with cheese dip. The breadsticks were baked to perfection and the dip was super yum. Perfect combination!\nThe Crowded House is my favourite in the veg pizzas. Loaded with paneer and a lot of veggies with an overload of cheese and soft crust. How better a pizza could get?\nAlso the Paneer Tikka pizza and another delicious pizza that I ordered and a must try.\nFor dessert I went for the choco lava cake. A perfect chocolatey dessert for all the chocolate lovers.\nThe delivery was quite quick and the packaging was too good.\nThe food was warm enough through the delivery.'), ('Rated 5.0', 'RATED\n  Mojo pizza always delivery on time Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nThey never compromise on cheeseÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8band toppings\nOne of my personal fav is spicy paneer cheese burst Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b\nThe quantity and quality both are maintain'), ('Rated 5.0', 'RATED\n  Perfect place to satisfy your cravings for Pizza and garlic breads. Been ordering from here for a while and always feel pleasantly surprised.'), ('Rated 5.0', 'RATED\n  i have ordered 2 pizza i.e paneer Tikka pizza and corn pizza. The pizza was amazing and tastes good as well. Even the packing was good and pizza was served well. Overall it was awesome and worth ordering it'), ('Rated 5.0', "RATED\n  Mojo's pizza one of the best place to order pizza from as they serve the best pizza recently I ordered from Mojo's pizza. Packaging was great as well as the taste of the pizza..\n\nBBQ chicken pizza\nSpicy Paneer pizza\nChoco lava cake\n\nA Fined Chopped Chicken pizza in a chicken Kheema which and some Veggies on it with a lots of cheese makes your mind Droll by its amazing Taste and the Quality of it. The bread was too soft and Crispy to enjoy the pizza along with a Coke\n\nA sweet dessert came to an end with a Choco lava cake. Taste was too good and very much delicious to eat.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
Buff buffet buff they stand as per their name when come to food and service. A very good dining experience at this restaurant, we were bored of the BBQ grills and went in for normal buffet but surprisingly the service and food was so good that it was far better than then normal BBQ grills now coming down to rating it's a 5* star in all the aspects. Pics would discribe this place better."), ('Rated 5.0', 'RATED\n  DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t we all want to wake up at 10 AM on a Sunday and just have a feast of a brunch which has a little bit of north, a little bit of south and awesomeness all around? Buff Buffet Buff is one such place where the craving of every hunger panda will be taken care of. I mean the place has Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91BuffetÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92 in its name Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t it obvious? Well, okay I agree Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 it is very obvious BUT you are going to be surprised by the crazy choice of food and cuisine they offer in their buffet. This isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t the ordinary buffet where you come with a set mind of palate and cuisine to try Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 because I can bet that if you are on a diet will be thrown out of the window once you enter this place! Buffet? yes, please! ...\nRead full post on eattherapy.com'), ('Rated 3.0', 'RATED\n  I gave 3 stars because of the ambience, it can be an area of improvement. The starters are good, one has plenty of options there. The main course also has good options, presentation is really good when it comes to the salads and side dishes. Not many options in desserts. I would say its a good place to go out with your family, not with your date.'), ('Rated 4.0', 'RATED\n  Alright if you can stuff yourself like a hungry wolf, this is the place for you. The grills were all amazing, juicy and deliciously lip smacking. Special mention goes to the grilled fish, its just divine. The staff is very polite, courteous and the prices are reasonable.\n\nMark my words friends, this place is the best when it comes to Buffet.'), ('Rated 5.0', 'RATED\n  Wide spread buffet with good service . Friendly staff and courteous staff. The spread is dam good. This had been our 6th visit to this place . Sabita and Santosh good service guys . Thank you'), ('Rated 5.0', 'RATED\n  Kind polite and good waiting by SantoshKumar and savitga. Great food, great ambience. Range of varieties for starters and even for main course.'), ('Rated 4.0', "RATED\n  There were 10 varieties of starters for both Veg and Non-Veg and Mongolian Cuisine Live Counter. Drinks weren't so good. Overall it was a good experience."), ('Rated 4.0', "RATED\n  Happy new year guys!! Hope u have a wonderful year ahead...?\nComing to my gastronomical affair new year had to be special.. heading out for good brunch with family is best remedy for hangovers...?\nAlright it's in prime location so parking is issue but they have parking space so I don't have to worried about.\nAmbience-well we went on 1st January so it's too crowded so there was no much time to analyse the decor.but was pretty decent.\nFood- this is what we pay for, they had special lunch. The live counter was amazing, waffles,does, dim sum quite lots of options.\nTom yum soup was tasty, starters, salads,main course was pretty decent. But they had Less options for desert if u r someone who save space for desert you might get disappointed.\nOverall it was pretty good..."), ('Rated 5.0', 'RATED\n  This place was in my bookmarks since a long time, so decided to give a try for our team dinner and I must say it wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t a wrong choice. They have a quite big place to accommodate a good number of people. Staffs are very polite and helpful and service is also quick. They serve a good number of veg and non veg starters which were very yumm. Everything tasted superb. Non veg Main Course had quite many options and good in taste. Chicken Hyderabadi was too good. I didnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t try Veg but my teammates told they were also equally good. They have a live kitchen but no one of us could try because of being overloaded by the starters. In Desert they have moderate options but I tasted only Jamun and Ice Cream. Vanilla and butterscotch flavours were good. Now coming to the Mocktails, we did try a few and they also didnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t disappoint us. Overall a good place for family as well as office parties and guys, their starters are must try.'), ('Rated 5.0', 'RATED\n  A nice place for buffet craving. If you are around Koramangala, a must visit place. Ambience is classy and music was soothing our mind.\n\nComing to the food, they have a wide option of items on the buffet. 10 veg and 10 non veg starters served on the table. Liked Prawn in lemon chilli sauce, fish rawa fry and Kalmi kebab. Also all veg starters were superb. I tried main course in most buffet places, but this one some thing amazing. Quality and variety of the items were superb. Liked mutton masala the most along with tandoori roti. Veg main course was also good.\n\nThe only dissapoint was the dessert spread. They can add more varieties like starters and main course.\n\nService was courteous and friendly. We really enjoyed our time.\n\nI will highly recommend this place. ??'), ('Rated 4.0', 'RATED\n  Had been her for a mid week buffet.. good variety of food both veg and non veg all tasting very good ?? good hospitality courteous staff... recomended place for buffet..'), ('Rated 5.0', "RATED\n  Buff Buffet Buff- as the name suggests, it's a nice place where you can enjoy buffet and live dishes with your friends and family.\n\nThe ambiance of the restaurant was good and so was the food. This was my second visit and the staff members made sure in every way to keep our evening delightful. They were very courteous and well mannered.\n\nMoreover, they also presented us with special desserts and drinks which was really praiseworthy.\n\nA MUST TRY!\n\nFood- 4. 5/5\nAmbience- 4/5\nService- 4.5/5\n\nOverall- 4.5/5\n\nIf you want to have unlimited good quality food served hot in your plates, Buff Buffet Buff won't fail to impress you."), ('Rated 4.0', 'RATED\n  Nice place for get together with family and friends or for small office lunch and dinner. Good was good and service was nice. Recommended place for having dinner with loved one.\nPriya Singh served us and it was really good.'), ('Rated 4.0', 'RATED\n  Perfect place for the Sunday lunch!!!\nI thoroughly enjoyed this place and literally I feel I have gained double the weight!\nService was too good!!\nEach and every dish was just awesome!\nDesserts were yummy!!!\nStarters were too good!\n\nYFM\nFood:4/5\nAmbience:4/5\nService:5/5\nQuality:4/5'), ('Rated 4.0', 'RATED\n  I saw this place when I was in Buff Buffet Buff fast time and since then it was in my which list for a long time... Visited for the weekend lunch.....'), ('Rated 2.0', "RATED\n  It's a nice place for a weekend. Delicious food, prompt service. Good ambience. Good value for money. Loved Maa ki dua paratha. Wonderful place for a get together. Would like to visit again"), ('Rated 4.0', "RATED\n  A refreshingly simple buffet place with great choices in the menu and very courteous staff. Food is very tasty. I've had the tastiest Chicken and Mushroom soup here. Their prawn and fish offerings are also too good. Just that their dessert selection could improve in terms of variety."), ('Rated 3.0', 'RATED\n  Lots of options in starter but evrything is so bland, tasteless. No taste at all. And same as main course too. I like only cheese cake there in dessert nothing else. If taste is not good what is the point of options. I do not think I will hit this again.'), ('Rated 4.0', 'RATED\n  Perfect place for the Sunday lunch!!!\nI thoroughly enjoyed this place and literally I feel I have gained double the weight!\nService was too good!!\nEach and every dish was just awesome!\nDesserts were yummy!!!\nStarters were too good!\n\nYFM\nFood:4/5\nAmbience:4/5\nService:5/5\nQuality:4/5'), ('Rated 4.0', 'RATED\n  I saw this place when I was in Buff Buffet Buff fast time and since then it was in my which list for a long time... Visited for the weekend lunch.....'), ('Rated 2.0', "RATED\n  It's a nice place for a weekend. Delicious food, prompt service. Good ambience. Good value for money. Loved Maa ki dua paratha. Wonderful place for a get together. Would like to visit again"), ('Rated 4.0', "RATED\n  A refreshingly simple buffet place with great choices in the menu and very courteous staff. Food is very tasty. I've had the tastiest Chicken and Mushroom soup here. Their prawn and fish offerings are also too good. Just that their dessert selection could improve in terms of variety."), ('Rated 3.0', 'RATED\n  Lots of options in starter but evrything is so bland, tasteless. No taste at all. And same as main course too. I like only cheese cake there in dessert nothing else. If taste is not good what is the point of options. I do not think I will hit this again.'), ('Rated 4.0', 'RATED\n  Perfect place for the Sunday lunch!!!\nI thoroughly enjoyed this place and literally I feel I have gained double the weight!\nService was too good!!\nEach and every dish was just awesome!\nDesserts were yummy!!!\nStarters were too good!\n\nYFM\nFood:4/5\nAmbience:4/5\nService:5/5\nQuality:4/5'), ('Rated 4.0', 'RATED\n  I saw this place when I was in Buff Buffet Buff fast time and since then it was in my which list for a long time... Visited for the weekend lunch.....'), ('Rated 2.0', "RATED\n  It's a nice place for a weekend. Delicious food, prompt service. Good ambience. Good value for money. Loved Maa ki dua paratha. Wonderful place for a get together. Would like to visit again"), ('Rated 4.0', "RATED\n  A refreshingly simple buffet place with great choices in the menu and very courteous staff. Food is very tasty. I've had the tastiest Chicken and Mushroom soup here. Their prawn and fish offerings are also too good. Just that their dessert selection could improve in terms of variety."), ('Rated 3.0', 'RATED\n  Lots of options in starter but evrything is so bland, tasteless. No taste at all. And same as main course too. I like only cheese cake there in dessert nothing else. If taste is not good what is the point of options. I do not think I will hit this again.'), ('Rated 4.0', 'RATED\n  Perfect place for the Sunday lunch!!!\nI thoroughly enjoyed this place and literally I feel I have gained double the weight!\nService was too good!!\nEach and every dish was just awesome!\nDesserts were yummy!!!\nStarters were too good!\n\nYFM\nFood:4/5\nAmbience:4/5\nService:5/5\nQuality:4/5'), ('Rated 4.0', 'RATED\n  I saw this place when I was in Buff Buffet Buff fast time and since then it was in my which list for a long time... Visited for the weekend lunch.....'), ('Rated 2.0', "RATED\n  It's a nice place for a weekend. Delicious food, prompt service. Good ambience. Good value for money. Loved Maa ki dua paratha. Wonderful place for a get together. Would like to visit again"), ('Rated 4.0', "RATED\n  A refreshingly simple buffet place with great choices in the menu and very courteous staff. Food is very tasty. I've had the tastiest Chicken and Mushroom soup here. Their prawn and fish offerings are also too good. Just that their dessert selection could improve in terms of variety."), ('Rated 3.0', 'RATED\n  Lots of options in starter but evrything is so bland, tasteless. No taste at all. And same as main course too. I like only cheese cake there in dessert nothing else. If taste is not good what is the point of options. I do not think I will hit this again.'), ('Rated 5.0', 'RATED\n  Most polite and courteous staff i hv ever met. Made me and my family, friends feel very comfortable. Gave a table of our choice. Food was awesome. Dinner buffet was for 750 rs, value for money.'), ('Rated 5.0', 'RATED\n  Went there for a Team Dinner!The ambience is good for Family dinners as well as Team dinners.Food is really good here, but there is a limited variety.'), ('Rated 4.0', 'RATED\n  I have visited recently with my freinds to this place, really they offer a best combinations of veg and nonveg starters ,main course a elaborate buffet the food was aboslutley fresh and tasteyenjoyed a lot , specially perfect ambeince takes you out of this world ,\nOver all a good experience\nLooking forward to visited again'), ('Rated 4.0', "RATED\n  A nice warm ambience, and a good service. Let's talk food.\n\nStarters need big time improvement, specially non veg and sea food. The chicken got hard in most starters. I had reordered it and then it was fine. Main course chicken was also hard/stiff. Veg food was good. Paneer lababdar and Dal makhani were good. Mongolian barbecue section was good.\n\nThe deserts were very good."), ('Rated 5.0', 'RATED\n  Most polite and courteous staff i hv ever met. Made me and my family, friends feel very comfortable. Gave a table of our choice. Food was awesome. Dinner buffet was for 750 rs, value for money.'), ('Rated 5.0', 'RATED\n  Went there for a Team Dinner!The ambience is good for Family dinners as well as Team dinners.Food is really good here, but there is a limited variety.'), ('Rated 4.0', 'RATED\n  I have visited recently with my freinds to this place, really they offer a best combinations of veg and nonveg starters ,main course a elaborate buffet the food was aboslutley fresh and tasteyenjoyed a lot , specially perfect ambeince takes you out of this world ,\nOver all a good experience\nLooking forward to visited again'), ('Rated 4.0', "RATED\n  A nice warm ambience, and a good service. Let's talk food.\n\nStarters need big time improvement, specially non veg and sea food. The chicken got hard in most starters. I had reordered it and then it was fine. Main course chicken was also hard/stiff. Veg food was good. Paneer lababdar and Dal makhani were good. Mongolian barbecue section was good.\n\nThe deserts were very good."), ('Rated 5.0', 'RATED\n  Most polite and courteous staff i hv ever met. Made me and my family, friends feel very comfortable. Gave a table of our choice. Food was awesome. Dinner buffet was for 750 rs, value for money.'), ('Rated 5.0', 'RATED\n  Went there for a Team Dinner!The ambience is good for Family dinners as well as Team dinners.Food is really good here, but there is a limited variety.'), ('Rated 4.0', 'RATED\n  I have visited recently with my freinds to this place, really they offer a best combinations of veg and nonveg starters ,main course a elaborate buffet the food was aboslutley fresh and tasteyenjoyed a lot , specially perfect ambeince takes you out of this world ,\nOver all a good experience\nLooking forward to visited again'), ('Rated 4.0', "RATED\n  A nice warm ambience, and a good service. Let's talk food.\n\nStarters need big time improvement, specially non veg and sea food. The chicken got hard in most starters. I had reordered it and then it was fine. Main course chicken was also hard/stiff. Veg food was good. Paneer lababdar and Dal makhani were good. Mongolian barbecue section was good.\n\nThe deserts were very good."), ('Rated 5.0', 'RATED\n  Most polite and courteous staff i hv ever met. Made me and my family, friends feel very comfortable. Gave a table of our choice. Food was awesome. Dinner buffet was for 750 rs, value for money.'), ('Rated 5.0', 'RATED\n  Went there for a Team Dinner!The ambience is good for Family dinners as well as Team dinners.Food is really good here, but there is a limited variety.'), ('Rated 4.0', 'RATED\n  I have visited recently with my freinds to this place, really they offer a best combinations of veg and nonveg starters ,main course a elaborate buffet the food was aboslutley fresh and tasteyenjoyed a lot , specially perfect ambeince takes you out of this world ,\nOver all a good experience\nLooking forward to visited again'), ('Rated 4.0', "RATED\n  A nice warm ambience, and a good service. Let's talk food.\n\nStarters need big time improvement, specially non veg and sea food. The chicken got hard in most starters. I had reordered it and then it was fine. Main course chicken was also hard/stiff. Veg food was good. Paneer lababdar and Dal makhani were good. Mongolian barbecue section was good.\n\nThe deserts were very good."), ('Rated 5.0', 'RATED\n  Most polite and courteous staff i hv ever met. Made me and my family, friends feel very comfortable. Gave a table of our choice. Food was awesome. Dinner buffet was for 750 rs, value for money.'), ('Rated 5.0', 'RATED\n  Went there for a Team Dinner!The ambience is good for Family dinners as well as Team dinners.Food is really good here, but there is a limited variety.'), ('Rated 4.0', 'RATED\n  I have visited recently with my freinds to this place, really they offer a best combinations of veg and nonveg starters ,main course a elaborate buffet the food was aboslutley fresh and tasteyenjoyed a lot , specially perfect ambeince takes you out of this world ,\nOver all a good experience\nLooking forward to visited again'), ('Rated 4.0', "RATED\n  A nice warm ambience, and a good service. Let's talk food.\n\nStarters need big time improvement, specially non veg and sea food. The chicken got hard in most starters. I had reordered it and then it was fine. Main course chicken was also hard/stiff. Veg food was good. Paneer lababdar and Dal makhani were good. Mongolian barbecue section was good.\n\nThe deserts were very good."), ('Rated 4.0', 'RATED\n  BBB for the perfect breakfast to start your day. Good amount of options, and the food prepared with perfection. Ambience not on the high scale. Lunch though pulls more cash from your pocket, is good for starters and desert lovers. If you want to have a value for money food, prefer this place for Breakfast.'), ('Rated 3.0', "RATED\n  It's 3.5 Actually!\nU can easily find this place.. It serves some awesome ranges of mouth watering delicacies in their buffet menu.. From starters to Desserts there's a looooooooooooot of options available! So, if you want to hit this place go there starving.. ?\nOverall Ambience was good.. Service was also good..\nfood taste may be improved in some cases... and some improvement is much needed in terms of hygiene!!\n1. Dessert Cups must be Replaced...\n2. I found hair in one of their dishes..."), ('Rated 4.0', "RATED\n  I saw this place when I was in koramangala last time and since then it was in my wish list for a long time..visited for the weekend lunch and guess what we reached quite early :P\n\nThe starters will just blow your mind..there were 10 veg & non-veg starters which were equally amazing..main course were just pretty normal..there was a live counter toooo which served us the customised foood items..?\n\nComing to desserts, it was like icing on the cake..everything was just delicious..couldn't try their ice creams since we were already full?\n\nAnd a special appreciation goes to the staff!\nGreat hospitality..staff were so polite and they took good care of us?"), ('Rated 5.0', 'RATED\n  MD tokir the service was really good and again one more .. Priya these two guys .. were served very well ... and they took us food whatever I like...'), ('Rated 2.0', "RATED\n  After looking at the reviews and hearing about its extensive buffet menu, I chose to visit this place for breakfast with family. However, the visit wasn't a pleasant one.\n1. The breakfast items unlike other restaurants was extremely limited.\n2. Most of the things were cold\n3. We ordered for dosa which tasted weird - I guess the batter was left out from previous day.\n4. In the name of fruits they had just banana and muskmelon and the muskmelon was unriped!\n5. It took then more than half hour to serve boiled eggs.\n6. There were barely 8 people in the entire restaurant but the bread basket was empty.\n7. We ordered for an aloo paratha but it was not stuffed and cooked well.\n8. The waffle was hard and tasteless.\n\nThe only good thing was that the place was quiet so I could eat breakfast in peace. Very bad experience otherwise."), ('Rated 4.0', 'RATED\n  BBB for the perfect breakfast to start your day. Good amount of options, and the food prepared with perfection. Ambience not on the high scale. Lunch though pulls more cash from your pocket, is good for starters and desert lovers. If you want to have a value for money food, prefer this place for Breakfast.'), ('Rated 3.0', "RATED\n  It's 3.5 Actually!\nU can easily find this place.. It serves some awesome ranges of mouth watering delicacies in their buffet menu.. From starters to Desserts there's a looooooooooooot of options available! So, if you want to hit this place go there starving.. ?\nOverall Ambience was good.. Service was also good..\nfood taste may be improved in some cases... and some improvement is much needed in terms of hygiene!!\n1. Dessert Cups must be Replaced...\n2. I found hair in one of their dishes..."), ('Rated 4.0', "RATED\n  I saw this place when I was in koramangala last time and since then it was in my wish list for a long time..visited for the weekend lunch and guess what we reached quite early :P\n\nThe starters will just blow your mind..there were 10 veg & non-veg starters which were equally amazing..main course were just pretty normal..there was a live counter toooo which served us the customised foood items..?\n\nComing to desserts, it was like icing on the cake..everything was just delicious..couldn't try their ice creams since we were already full?\n\nAnd a special appreciation goes to the staff!\nGreat hospitality..staff were so polite and they took good care of us?"), ('Rated 5.0', 'RATED\n  MD tokir the service was really good and again one more .. Priya these two guys .. were served very well ... and they took us food whatever I like...'), ('Rated 2.0', "RATED\n  After looking at the reviews and hearing about its extensive buffet menu, I chose to visit this place for breakfast with family. However, the visit wasn't a pleasant one.\n1. The breakfast items unlike other restaurants was extremely limited.\n2. Most of the things were cold\n3. We ordered for dosa which tasted weird - I guess the batter was left out from previous day.\n4. In the name of fruits they had just banana and muskmelon and the muskmelon was unriped!\n5. It took then more than half hour to serve boiled eggs.\n6. There were barely 8 people in the entire restaurant but the bread basket was empty.\n7. We ordered for an aloo paratha but it was not stuffed and cooked well.\n8. The waffle was hard and tasteless.\n\nThe only good thing was that the place was quiet so I could eat breakfast in peace. Very bad experience otherwise."), ('Rated 4.0', 'RATED\n  BBB for the perfect breakfast to start your day. Good amount of options, and the food prepared with perfection. Ambience not on the high scale. Lunch though pulls more cash from your pocket, is good for starters and desert lovers. If you want to have a value for money food, prefer this place for Breakfast.'), ('Rated 3.0', "RATED\n  It's 3.5 Actually!\nU can easily find this place.. It serves some awesome ranges of mouth watering delicacies in their buffet menu.. From starters to Desserts there's a looooooooooooot of options available! So, if you want to hit this place go there starving.. ?\nOverall Ambience was good.. Service was also good..\nfood taste may be improved in some cases... and some improvement is much needed in terms of hygiene!!\n1. Dessert Cups must be Replaced...\n2. I found hair in one of their dishes..."), ('Rated 4.0', "RATED\n  I saw this place when I was in koramangala last time and since then it was in my wish list for a long time..visited for the weekend lunch and guess what we reached quite early :P\n\nThe starters will just blow your mind..there were 10 veg & non-veg starters which were equally amazing..main course were just pretty normal..there was a live counter toooo which served us the customised foood items..?\n\nComing to desserts, it was like icing on the cake..everything was just delicious..couldn't try their ice creams since we were already full?\n\nAnd a special appreciation goes to the staff!\nGreat hospitality..staff were so polite and they took good care of us?"), ('Rated 5.0', 'RATED\n  MD tokir the service was really good and again one more .. Priya these two guys .. were served very well ... and they took us food whatever I like...'), ('Rated 2.0', "RATED\n  After looking at the reviews and hearing about its extensive buffet menu, I chose to visit this place for breakfast with family. However, the visit wasn't a pleasant one.\n1. The breakfast items unlike other restaurants was extremely limited.\n2. Most of the things were cold\n3. We ordered for dosa which tasted weird - I guess the batter was left out from previous day.\n4. In the name of fruits they had just banana and muskmelon and the muskmelon was unriped!\n5. It took then more than half hour to serve boiled eggs.\n6. There were barely 8 people in the entire restaurant but the bread basket was empty.\n7. We ordered for an aloo paratha but it was not stuffed and cooked well.\n8. The waffle was hard and tasteless.\n\nThe only good thing was that the place was quiet so I could eat breakfast in peace. Very bad experience otherwise."), ('Rated 4.5', "RATED\n  Worth every penny u spent. Tried buffet and was tired of eating. Such was the quality of starters that there wasn't any room left for main course.\n\nBoth veg and non veg options were yummy. Specially liked Tawa Machhi, Fish hot ginger,Pahadi Murg, Banarasi Seekh, Rajma ke Tikke. Ambience was brilliant as well. Loved the seating arrangement.\n\nIt was a treat to taste buds and not too heavy on wallet either. Great experience and good time."), ('Rated 3.0', 'RATED\n  So I booked a table and reached on time but to my surprise I received table after 20min .... So the starters were tasty and served hot on table...there was only two option on juice ...live paratha,Momo counters were attraction and really good ...Momo dips were fine ....in main course there were many options available,both In veg and non veg....food was not very different than what u get in other dine out places ....overall experience was good but really not for a romantic celebration ...family outing and corporate lunch is fine'), ('Rated 4.0', 'RATED\n  Had gone to the Breakfast Buffet .\n\nThere was a good variety of food with multiple cuisines .\n\nContinental, south indian and Asian food were all great.\n\nDrawback was the service as they werent very attentive while placing the orders.\n\nAmbiance wasl delightful.\nLocation is easy to catch.'), ('Rated 4.0', 'RATED\n  I keep on visiting this place as itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s one of the best place to have buffet. The staff is very much courteous and service is way good. Highly recommended this place for lunch or dinner.'), ('Rated 4.5', "RATED\n  Worth every penny u spent. Tried buffet and was tired of eating. Such was the quality of starters that there wasn't any room left for main course.\n\nBoth veg and non veg options were yummy. Specially liked Tawa Machhi, Fish hot ginger,Pahadi Murg, Banarasi Seekh, Rajma ke Tikke. Ambience was brilliant as well. Loved the seating arrangement.\n\nIt was a treat to taste buds and not too heavy on wallet either. Great experience and good time."), ('Rated 3.0', 'RATED\n  So I booked a table and reached on time but to my surprise I received table after 20min .... So the starters were tasty and served hot on table...there was only two option on juice ...live paratha,Momo counters were attraction and really good ...Momo dips were fine ....in main course there were many options available,both In veg and non veg....food was not very different than what u get in other dine out places ....overall experience was good but really not for a romantic celebration ...family outing and corporate lunch is fine'), ('Rated 4.0', 'RATED\n  Had gone to the Breakfast Buffet .\n\nThere was a good variety of food with multiple cuisines .\n\nContinental, south indian and Asian food were all great.\n\nDrawback was the service as they werent very attentive while placing the orders.\n\nAmbiance wasl delightful.\nLocation is easy to catch.'), ('Rated 4.0', 'RATED\n  I keep on visiting this place as itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s one of the best place to have buffet. The staff is very much courteous and service is way good. Highly recommended this place for lunch or dinner.'), ('Rated 4.5', "RATED\n  Worth every penny u spent. Tried buffet and was tired of eating. Such was the quality of starters that there wasn't any room left for main course.\n\nBoth veg and non veg options were yummy. Specially liked Tawa Machhi, Fish hot ginger,Pahadi Murg, Banarasi Seekh, Rajma ke Tikke. Ambience was brilliant as well. Loved the seating arrangement.\n\nIt was a treat to taste buds and not too heavy on wallet either. Great experience and good time."), ('Rated 3.0', 'RATED\n  So I booked a table and reached on time but to my surprise I received table after 20min .... So the starters were tasty and served hot on table...there was only two option on juice ...live paratha,Momo counters were attraction and really good ...Momo dips were fine ....in main course there were many options available,both In veg and non veg....food was not very different than what u get in other dine out places ....overall experience was good but really not for a romantic celebration ...family outing and corporate lunch is fine'), ('Rated 4.0', 'RATED\n  Had gone to the Breakfast Buffet .\n\nThere was a good variety of food with multiple cuisines .\n\nContinental, south indian and Asian food were all great.\n\nDrawback was the service as they werent very attentive while placing the orders.\n\nAmbiance wasl delightful.\nLocation is easy to catch.'), ('Rated 4.0', 'RATED\n  I keep on visiting this place as itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s one of the best place to have buffet. The staff is very much courteous and service is way good. Highly recommended this place for lunch or dinner.'), ('Rated 5.0', 'RATED\n  The food was excellent and the shakes were amazing. The burgers were nice and chicken was also fresh. The price might be a bit on the higher side.'), ('Rated 5.0', 'RATED\n  Impressive!\n\nNever been a fan of buffets, but this place changed my opinion. Quality, Spread and Price- everything perfect.\n\nLoved veg momos and the mushroom starter. 4 options of rice and great options in desserts.\n\nThey had both global and local options making it a perfect meal.\n\nCorporate offer on 14+ ppl. Recommended for team lunches!'), ('Rated 5.0', "RATED\n  I am a frequent visitor to this place, it's on the ground floor of the hotel and is nicely located in Koramangala.\nThe food is good, but what will actually make your day would be the courteous staff who will ensure ur taste buds get what you prefer.\nGood place for friends get together or a corporate team dinner"), ('Rated 5.0', 'RATED\n  Buff Buffet Buff is probably one of the best buffet spot in Koramangala. The rates are decent and the list of aliments are endless. A dozen starters which was very relishing, moreish main course, delicious desserts. The ambience is great too. Best place to be for a satisfactory buffet.\n\nAmbience - 8/10\nFood - 9/10\nVariety - 9/10\nDesserts - 8/10\nStaff - 9/10\nValue for money - 9.5/10\nA very nice place to hangout with friends. Must Try!! ????'), ('Rated 5.0', 'RATED\n  The food was excellent and the shakes were amazing. The burgers were nice and chicken was also fresh. The price might be a bit on the higher side.'), ('Rated 5.0', 'RATED\n  Impressive!\n\nNever been a fan of buffets, but this place changed my opinion. Quality, Spread and Price- everything perfect.\n\nLoved veg momos and the mushroom starter. 4 options of rice and great options in desserts.\n\nThey had both global and local options making it a perfect meal.\n\nCorporate offer on 14+ ppl. Recommended for team lunches!'), ('Rated 5.0', "RATED\n  I am a frequent visitor to this place, it's on the ground floor of the hotel and is nicely located in Koramangala.\nThe food is good, but what will actually make your day would be the courteous staff who will ensure ur taste buds get what you prefer.\nGood place for friends get together or a corporate team dinner"), ('Rated 5.0', 'RATED\n  Buff Buffet Buff is probably one of the best buffet spot in Koramangala. The rates are decent and the list of aliments are endless. A dozen starters which was very relishing, moreish main course, delicious desserts. The ambience is great too. Best place to be for a satisfactory buffet.\n\nAmbience - 8/10\nFood - 9/10\nVariety - 9/10\nDesserts - 8/10\nStaff - 9/10\nValue for money - 9.5/10\nA very nice place to hangout with friends. Must Try!! ????'), ('Rated 5.0', 'RATED\n  The food was excellent and the shakes were amazing. The burgers were nice and chicken was also fresh. The price might be a bit on the higher side.'), ('Rated 5.0', 'RATED\n  Impressive!\n\nNever been a fan of buffets, but this place changed my opinion. Quality, Spread and Price- everything perfect.\n\nLoved veg momos and the mushroom starter. 4 options of rice and great options in desserts.\n\nThey had both global and local options making it a perfect meal.\n\nCorporate offer on 14+ ppl. Recommended for team lunches!'), ('Rated 5.0', "RATED\n  I am a frequent visitor to this place, it's on the ground floor of the hotel and is nicely located in Koramangala.\nThe food is good, but what will actually make your day would be the courteous staff who will ensure ur taste buds get what you prefer.\nGood place for friends get together or a corporate team dinner"), ('Rated 5.0', 'RATED\n  Buff Buffet Buff is probably one of the best buffet spot in Koramangala. The rates are decent and the list of aliments are endless. A dozen starters which was very relishing, moreish main course, delicious desserts. The ambience is great too. Best place to be for a satisfactory buffet.\n\nAmbience - 8/10\nFood - 9/10\nVariety - 9/10\nDesserts - 8/10\nStaff - 9/10\nValue for money - 9.5/10\nA very nice place to hangout with friends. Must Try!! ????'), ('Rated 5.0', 'RATED\n  The food was excellent and the shakes were amazing. The burgers were nice and chicken was also fresh. The price might be a bit on the higher side.'), ('Rated 5.0', 'RATED\n  Impressive!\n\nNever been a fan of buffets, but this place changed my opinion. Quality, Spread and Price- everything perfect.\n\nLoved veg momos and the mushroom starter. 4 options of rice and great options in desserts.\n\nThey had both global and local options making it a perfect meal.\n\nCorporate offer on 14+ ppl. Recommended for team lunches!'), ('Rated 5.0', "RATED\n  I am a frequent visitor to this place, it's on the ground floor of the hotel and is nicely located in Koramangala.\nThe food is good, but what will actually make your day would be the courteous staff who will ensure ur taste buds get what you prefer.\nGood place for friends get together or a corporate team dinner"), ('Rated 5.0', 'RATED\n  Buff Buffet Buff is probably one of the best buffet spot in Koramangala. The rates are decent and the list of aliments are endless. A dozen starters which was very relishing, moreish main course, delicious desserts. The ambience is great too. Best place to be for a satisfactory buffet.\n\nAmbience - 8/10\nFood - 9/10\nVariety - 9/10\nDesserts - 8/10\nStaff - 9/10\nValue for money - 9.5/10\nA very nice place to hangout with friends. Must Try!! ????'), ('Rated 3.0', 'RATED\n  This is a typical buffet place that you can pick for a team lunch. A bunch of starters, mains and dessert. The service is not very prompt as the place is extremely busy all the time and they have to add in more staff to make the overall experience more pleasant.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
I'm a movie buff so love the decor. Very cosy place to relax and have a quick snack/meal. However I just felt the food needed a little more pizzazz for want of a better word. Would suggest just hanging out there"), ('Rated 5.0', "RATED\n  One amazing cafe with delicious food! A hidden gem in Kammanahalli.\n\nThe ambience is lovely. It's decorated with things related to movies and was absolutely unique.\nThe food was heavenly! It's got a perfect mix of flavours. We ordered Pasta Unchained and I must say it was yummy and cheesy. Loved It!\nNext we ordered Life Of Pie and this is a must try. It had minced chicken meat in a spicy gravy kind of a thing and was topped with mashed potatoes! HEAVEN!\nFor drinks we tried the Oreo milkshake which was again good. And for desserts we had a brownie as we were already full. The brownie was warm, fresh and had exact sweetness in it.\nThe staff were courteous and friendly. The food arrived on time and it was worth every penny spent. The quantity is too filling and satisfying.\n\nLoved every bit of It! ?"), ('Rated 5.0', 'RATED\n  Ambience to date \nGood food \nCute space \nDecent Service \nIdeal for couples or working/studying \n\nIt is a plus that they serve popcorn for free. It gave the whole space an edge :)'), ('Rated 4.0', 'RATED\n  Well decorated, ambience and the pictures is definitely the highlight of this place... A Hollywood movie lover like me will totally adore this place... The movie titled frames with the little miniatures are adorable. Ordered Cappuccino and garlic bread with cheese... Coffee was fab!'), ('Rated 4.0', 'RATED\n  based on a true story- Bristo is a great cafe designed for spending a peaceful time. the place is beautifully designed with keeping movies and superheroes in mind. the place has a good amount of colors and is very appealing.\nthe place has a decent option for food but whatever I ate was good. I ate a club sandwich along with cheesy fries and it turned out to be great. the price is very pocket-friendly and the quantity is massive which would be great for any foodie.'), ('Rated 4.0', "RATED\n  I would say pretty ordinary place which doesn't have much to hype about.\nWe took pink panther, Oreo shake, lemonade and green lantern. Out of the 4 we liked green lantern while the others were below standards. Didn't drink a worse lemonade than this.\nThe positive is the sides , we had chicken nachos and chicken french fries which were really good.\nI was struggling to give a 3 vs 4 (since it doesn't have decimals) but I gave 4 because of the ambiance and staff attitude.\nActual rating 3.5\nGoing next time - No unless they have a Zomato offer"), ('Rated 3.0', 'RATED\n  Loved the ambience. The setup is amazing with all the movie posters and superhero figurine.\n\nI tried pink panther and pancakes. Pink panther has the perfect taste of blueberry. Pancakes were soft and would just melt in your mouth. Menu has some real funky names and would love to try burger next time.'), ('Rated 3.0', 'RATED\n  A cozy place to hang out in a residential neighborhood. The ambience is very colorful and they have a good selection of books and games. They have some catchy names on the menu. Bloody Fries had a little too much sauce. Fight Club Sandwich was average. The Italian Job Pasta was exceptionally good.'), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  The place is quite good. The ambience is great. The food is good but a bit expensive. I tried the Terminator chicken burger and salad. The taste was good but not worth the money.'), ('Rated 4.0', 'RATED\n  A must visit place for book lovers and comic fans in particular. It is a place with a peaceful ambience to not only munch the yummy delicious food served but also to sit down and relax to read books .'), ('Rated 4.0', 'RATED\n  Love the ambience! Quaint place with amazing food options. Tried the casserole and it was yummmm! Love how the veggies were perfectly balanced and the sauce was the right heat.Keep calm and enjoy the bistro.'), ('Rated 2.0', "RATED\n  This is cute little cafe located in one of the by lanes, they have got the interiors right, and looks like a lot effort actually has gone in to make it.\nSmall place so not many service staff.\nThe food can use a lot of improvement seems not put together we ordered the chicken sandwich and sausage dish, the sausage were coated with tomatoe sauce and nothing else.. They actually give you complimentary pop corn which seemed like it was stale. A lot of potential to this place that's needs come out."), ('Rated 5.0', 'RATED\n  This is a cute place located in Kammanahalli. The setting of this place is very quirky. Had visited this place with my friends. Had ordered the Italian job pasta, Bacon nachos, honey I shred the chicken burger, lion king burger and fight club sandwich. The dishes are named after movies and the food was delicious and the service is quick. The staff is courteous. Had an amazing time here.'), ('Rated 4.0', 'RATED\n  I love the interior and the decor. One heck of a calm place with some nice music ! ?? filled with attractive photo frames of the super heroes and villians and cute cutleries. Apparently they have relocated recently near Cafe Azzure.\n\nWe ordered lion burger King which was okay a lil blunt taste, Blue velvet steak was creamy and yummy!! Bloody fries looks yummy and tastes even lip-smacking! The brownie here is a good one! Apt to finish off your meal.\n\nService: 3.5/5\nAmbience :4.5/5\nFood:4/5\nValue for money :4/5'), ('Rated 4.0', 'RATED\n  So first of all let me talk about their pasta . Its very creamy , its not very thick , the meat pieces in the pasta it was cut into a meduim size but i gues thats ok ! . it was soft and juicy . it was yummy . The quantity of the food is good . the garlic bread ? Or the butter bread ? It dint have any taste to it . It was soft and not very crispy .\nBurger - it was a chicken burger . It was ok . The bun was so soft it dint hold the burger together . So i had to like cut it into slices and eat . I would give it a 3 star .\nAll together their service was good . The place is very cosy . they have an outdoor area and indoor area to sit as well .'), ('Rated 5.0', 'RATED\n  This is a cute place located in Kammanahalli. The setting of this place is very quirky. Had visited this place with my friends. Had ordered the Italian job pasta, Bacon nachos, honey I shred the chicken burger, lion king burger and fight club sandwich. The dishes are named after movies and the food was delicious and the service is quick. The staff is courteous. Had an amazing time here.'), ('Rated 4.0', 'RATED\n  I love the interior and the decor. One heck of a calm place with some nice music ! ?? filled with attractive photo frames of the super heroes and villians and cute cutleries. Apparently they have relocated recently near Cafe Azzure.\n\nWe ordered lion burger King which was okay a lil blunt taste, Blue velvet steak was creamy and yummy!! Bloody fries looks yummy and tastes even lip-smacking! The brownie here is a good one! Apt to finish off your meal.\n\nService: 3.5/5\nAmbience :4.5/5\nFood:4/5\nValue for money :4/5'), ('Rated 4.0', 'RATED\n  So first of all let me talk about their pasta . Its very creamy , its not very thick , the meat pieces in the pasta it was cut into a meduim size but i gues thats ok ! . it was soft and juicy . it was yummy . The quantity of the food is good . the garlic bread ? Or the butter bread ? It dint have any taste to it . It was soft and not very crispy .\nBurger - it was a chicken burger . It was ok . The bun was so soft it dint hold the burger together . So i had to like cut it into slices and eat . I would give it a 3 star .\nAll together their service was good . The place is very cosy . they have an outdoor area and indoor area to sit as well .'), ('Rated 5.0', 'RATED\n  This is a cute place located in Kammanahalli. The setting of this place is very quirky. Had visited this place with my friends. Had ordered the Italian job pasta, Bacon nachos, honey I shred the chicken burger, lion king burger and fight club sandwich. The dishes are named after movies and the food was delicious and the service is quick. The staff is courteous. Had an amazing time here.'), ('Rated 4.0', 'RATED\n  I love the interior and the decor. One heck of a calm place with some nice music ! ?? filled with attractive photo frames of the super heroes and villians and cute cutleries. Apparently they have relocated recently near Cafe Azzure.\n\nWe ordered lion burger King which was okay a lil blunt taste, Blue velvet steak was creamy and yummy!! Bloody fries looks yummy and tastes even lip-smacking! The brownie here is a good one! Apt to finish off your meal.\n\nService: 3.5/5\nAmbience :4.5/5\nFood:4/5\nValue for money :4/5'), ('Rated 4.0', 'RATED\n  So first of all let me talk about their pasta . Its very creamy , its not very thick , the meat pieces in the pasta it was cut into a meduim size but i gues thats ok ! . it was soft and juicy . it was yummy . The quantity of the food is good . the garlic bread ? Or the butter bread ? It dint have any taste to it . It was soft and not very crispy .\nBurger - it was a chicken burger . It was ok . The bun was so soft it dint hold the burger together . So i had to like cut it into slices and eat . I would give it a 3 star .\nAll together their service was good . The place is very cosy . they have an outdoor area and indoor area to sit as well .'), ('Rated 5.0', 'RATED\n  This is a cute place located in Kammanahalli. The setting of this place is very quirky. Had visited this place with my friends. Had ordered the Italian job pasta, Bacon nachos, honey I shred the chicken burger, lion king burger and fight club sandwich. The dishes are named after movies and the food was delicious and the service is quick. The staff is courteous. Had an amazing time here.'), ('Rated 4.0', 'RATED\n  I love the interior and the decor. One heck of a calm place with some nice music ! ?? filled with attractive photo frames of the super heroes and villians and cute cutleries. Apparently they have relocated recently near Cafe Azzure.\n\nWe ordered lion burger King which was okay a lil blunt taste, Blue velvet steak was creamy and yummy!! Bloody fries looks yummy and tastes even lip-smacking! The brownie here is a good one! Apt to finish off your meal.\n\nService: 3.5/5\nAmbience :4.5/5\nFood:4/5\nValue for money :4/5'), ('Rated 4.0', 'RATED\n  So first of all let me talk about their pasta . Its very creamy , its not very thick , the meat pieces in the pasta it was cut into a meduim size but i gues thats ok ! . it was soft and juicy . it was yummy . The quantity of the food is good . the garlic bread ? Or the butter bread ? It dint have any taste to it . It was soft and not very crispy .\nBurger - it was a chicken burger . It was ok . The bun was so soft it dint hold the burger together . So i had to like cut it into slices and eat . I would give it a 3 star .\nAll together their service was good . The place is very cosy . they have an outdoor area and indoor area to sit as well .'), ('Rated 4.0', 'RATED\n  Had been here last weekend with my friend Abhinesh Krishnan G as this place was in my bookmarks ? for some time. And I must say I absolutely loved this place. Great Wall of lovely figurines, superheros, all time favourite Hollywood movies. Lovely collection. We had ordered for a large lord of oreo shake and that was just NICE. The unchained chicken pasta was worth trying. So creamy and delicious. The lion burger King was stuffy n tummy filling. It was an absolute delight being there. Would definitely turn up again.'), ('Rated 1.0', 'RATED\n  After seeing the rave reviews and ratings we decided to order food. We waited eagerly because most of the reviews were 4/5?\nThe delivery was on time but how were we disappointed. The packing was shabby. Normal cheap marketplace aluminium foils with oil peeping through it. The chicken sausages we had ordered were dripping with oil and ketchup, and the bacon was stale.\nThe chicken hills with fries was just a layer of shredded chicken n cheese n the rest of it was packed with fries, it was at least 500 gm of french fries.\nPathetic pathetic experience. Had ordered it for my lil niece. She couldnt even eat it. ?\nThis brings me to the question.. are Zomato reviews this fake !!'), ('Rated 3.0', 'RATED\n  An OKAY place with limited but sufficient items on the menu. I found the menu to be a bit over-priced and no reason for them to levy an additional 5% Service Charge. I would recommend "Kiss Kiss Bang Bang & Mash" for anyone planning to visit this place.'), ('Rated 4.0', "RATED\n  Went here on sunday afternoon for a late lunch.\n\nAmbiance: Based on great movies, you will find several classics' posters framed on the wall. I kept thinking about all those great ones while I waited for my order. There are tiny action figurines and superhero figurines too. There was a fooseball table, jenga, rubic cubes and cards if anyone was interested in playing. The seating is classy with some super hero pillows thrown in. The bistro looked very contemporary and chic. Music was good.\nFood: we had ordered a salad, a burger and some fish fingers. Also coffee, tea and chocolate milk.\nSalad was nice and fresh. Burger and chips were good too. Coffee was excellent, chocolate decent.. but the cardamom tea disappointed us a little.\nService: Good, faster than I thought. We were politely asked if we liked our food, and there is no denying that we did!"), ('Rated 4.0', "RATED\n  Service takes the point ?\n\nThey are so genuine and welcoming that you will enjoy the food.\n\nTalking about food, nachos,sandwiches and pastas tastes good. I loved it and yes I had sandwich .\n\nNext comes the ambience , it's a small place but shoutout to all superhero fans ! You will go waoo ??")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
During our stay at ITC Gardenia, complimentary breakfast at the Cubbon Pavilion included a wide choice of food: Western : toast, sausages, cakes, porridges, cereals; Pan Asian congee etc; and really delicious South Indian Kanjeevaram idli, dosa, vada, upma and several North Indian items like Poori and poha. '), ('Rated 5.0', "RATED\n  We had been here for a team lunch. The buffet is amazing. I loved the chaat items especially because it's really difficult to get these here in BLR. Overall it was superb."), ('Rated 4.0', 'RATED\n  Best buffet in Bangalore, hands down. Always a great time at ITC, the biggest spread is incredible, covering many cuisines and variety. I have noticed that many star hotels donâÂ\x80Â\x99t get Indian food right, they always spice it down, but I was blown away by how good the biryani was on Christmas. The Christmas buffet was something else. Will definitely come back again!'), ('Rated 4.0', 'RATED\n  Cubbon pavilion has got perfect ambience and fantastic varieties of foods. Food tastes very good. I am satisfied with vegetarian dishes.\nStarters are very limited.'), ('Rated 3.0', 'RATED\n  I had been there for midnight buffet . Although they had a huge variety of food taste wise it was just average .staffs were friendly and good and the only good thing was ambience . Ambience was amazing and very peaceful ðÂ\x9fÂ\x98¬'), ('Rated 5.0', 'RATED\n  Best place to spend your time wit family and friends To the luxury dine as well the cool place to relax And enjoy im eager to visit this place again'), ('Rated 4.0', 'RATED\n  Amazing place. Wide variety of buffet options. Had a privilege to stay there for a night but surely did loved it. The staff was great and friendly. Makes you feel like home!'), ('Rated 5.0', "RATED\n  One of the best restaurants in Bangalore speaking about the ambience it's soo good , went for the morning buffet breakfast it was so nice had a wide range of varieties"), ('Rated 5.0', 'RATED\n  The Ispahan had a smooth sweet and tangy flavour, with an amazing presentation by the chef. IâÂ\x80Â\x99m a coffee lover so wanted to try the cappuccino here and I wasnâÂ\x80Â\x99t disappointed. It was perfect. And the ambience was undoubtedly one of the most peaceful experiences for me.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
Tasty crepes... one of the best crepes we had in Bangalore... we tried the Nutella strawberry and banana crepe.. as well as Nutella banana crepe.. slightly pricey but the taste leaves you wanting for more. 4 star only coz of the pricing and the ambience'), ('Rated 5.0', 'RATED\n  If you want to try something different and delicious and you have a sweet tooth.. you must visit this place. A little bit about the history will tell you how the owner focused on serving the best before expanding to more stores. While the creeps tastes heaven, the desserts are Divine.'), ('Rated 4.0', "RATED\n  What a lovely food! Been three weeks I went there but the taste is still lingering!\n\nWe ordered panneer Peri Peri, mushroom BBQ , Crepe Cale (which was the best Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d)\n\nPanneer wasn't that great so the rating is four otherwise they definitely deserve five\n\nThe place is quite small. As they say big things comes in small packets the food here Worth everything."), ('Rated 5.0', "RATED\n  It's heavenly, heavenly and heavenly!! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d The food is healthy and very fulfillingÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b. My weekend cheat meals more often happen here only and BTW if you see the owner Bapan da just say Hi to him from my side.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89 Also, you can talk with him on various topics and he is a gem of a person and can customize your food the way you like itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a! MUST GO PLACE!"), ('Rated 4.0', 'RATED\n  A small joint which in such a short period has gain a lot popularity, an amazing new concept. Really love their food. Ambience is normal and staff is courteous enough. First I tried their Nutella with kiwi I was not a fan but when I tried their mushrooms with onions and capsicum and chicken sausage with onions and tomatoes then I realised this is best thing ever I tasted that too in a healthy way as their bread is completely wheat and no way harming your health. Really loved this concept and an amazing and place to be if you really want to have a good snack and even its filling.'), ('Rated 4.0', 'RATED\n  Location- 5/5\nAmbience- 4/5\nFood- 4/5\nStaff- 5/5\nService- 3/5\n\nSmall joint located in Koramangala serving delicious crepes.\n\nWe ordered the following crepes-\nVeg fajita- good filling but very spicy.\nPaneer peri-peri - tangy spicy taste.\nCaramelized banana with honey- reasonably satisfying.\n\nThough the service was a little slow but the delicious crepes makes up for it.'), ('Rated 4.0', 'RATED\n  I have been there many times. A very small cafe but OMG !! The best place to offer fusion dishes based on crepes. The owner is quite welcoming and courteous staff to accomodate your requests.\nMy favs are chicken meatball, peri peri chicken and caramelized banana with vanilaa icecream!!! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b'), ('Rated 5.0', 'RATED\n  This place is a hidden gem ! I have not tried the savoury ones so far, but do not miss out on the banana toffee/caramel crepe if you visit.It is divine ! Wish they would expand in other parts of Bangalore as well.'), ('Rated 5.0', "RATED\n  If you're looking to curb some crepe cravings or rather just any kind of craving for good cheap food, look no further. I come down to this place everytime Im around Koramangala and have a chance to make it. The savoury crepes with sausages in them are uh-maazing but the sweet one definitely take the cake for me. Their mango berry special and the crepe cakes are INSANE. Would definitely recommed trying these out."), ('Rated 4.0', "RATED\n  I've been wanting to go to this place for long but surprisingly never got around to do it - surprised coz it's quite closeby and small and fast.\n\nSo this is a really tiny place behind the Bosch office opposite Forum mall. One might easily miss it.\n\nThey have a lot of varieties of Crepes - be it with plain sauces, veggies, eggs, meats etc. I tried the plain crepe with chocolate sauce and another crepe with Mushroom, onion and capsicum. Also tried a sunny side up omelette. The crepes are SO good - especially the sauce they use in the veggie crepe. The other two were very decent as well.\n\nThe cost is tad bit high for such a tiny place but I guess they can demand a premium for their offering. The prep time was fine given it was a Sunday."), ('Rated 5.0', 'RATED\n  One of my all-time favorite places, a very cute little place which serves yummy food. Peri peri chicken and strawberry nutella are my all-time favorites. A must try!!!'), ('Rated 5.0', "RATED\n  Wish I could give more than 5 stars to this place. I got smoked chicken crepe with mushrooms and cheese. it's the best crepe I've ever had so far. You can taste cheese and sausage burst in your mouth from first bite till the last. Staff were lovely. Pocket friendly. I'd definitely visit this place again to try sweet crepes.\nThey serve best crepes in town. Do give a visit everyone"), ('Rated 4.0', 'RATED\n  One of the best places In town to grab some crepes ranging from sweet to savoury.\nYou will definitely find your happy Portion here.\nA very cute little place to hangout with friends and have desserts or a snack'), ('Rated 5.0', 'RATED\n  What an amazing place to tickle your taste buds.\nEntered the cafe while I was passing by, happy that I did so. There are are few times when we eat to fulfill our soul, this is one of such places.\nStaff is courteous & welcoming, service was lightning fast.\nTried their Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cCapsicum, Onions & Cheese Peri-Peri Mushroom CrepesÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9d while was absolutely delightful.\nAlso, Took a bite of Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cToffee Banana Crepe with Ice CreamÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9d, It turned out to be a perfect sweet dish to end my day.\nLooking forward to be returning soon to try their Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cPesto CrepesÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9d.\n\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f Ambience 3/5\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f Taste 5/5\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f Service 5/5\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f Value for money 4.5/5\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f Hygiene 5/5')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
Visited here a couple of times and liked their food. Now I can surely say that each of their burger tastes good and different from the other as I have tried each one of them Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b'), ('Rated 4.0', 'RATED\n  Food: 4/5\nAmbiance: 4/5\nStaff 4/5\n\nPortion size is good, quality of food is also good.\nStaff is courteous and polite.\nOur order:\nBBQ chicken burger.\nPotato cheese burger\nOh so cheesy burger'), ('Rated 4.0', "RATED\n  The first thing I want to talk about this place is it's amazing interior. It is all pastell and quirky and very soothing and very different.Now putting this aside,this place is ok n the road which goes inside next Anand and Kaikondtahalli Lake.I went with my friend to have ice cream after office and really the interior pleased me to the core We ordered fresh strawberries and tiramisu They use the Thai ice cream technique of mixing and beat it up and serve on waffles.Amazing taste and presentation.However I felt the quantity is really less compared to the price\nBut really nice place and food."), ('Rated 4.0', 'RATED\n  Checked in today in nearby hotel. Thought of giving it a try. Specious, basic ambiance well lighted place just opposite to the entry gate of Kaikondrahalli lake. It was weekday afternoon so there were not many customers. Ordered one Alu tikki cheese burger, one crumb fried chicken burger and one thin crust wheat flour chicken pizza. I must say all the 3 dishes were nicely plated, hot and delicious. Three dips on the table, red chili , green and mustered meyo are super tasty. They have ice creams also. Bad throat so skipped it. The pricing is quite reasonable as per the portions. Enjoyed the food.\n\ncookwithreena.wordpress.com'), ('Rated 5.0', 'RATED\n  Visited this place on a Saturday evening with a couple of friends. The place was quite crowded but we could find a place to sit soon. We ordered two pizzas, two burgers, hot chocolate, and an ice cream. The food was delicious! Burgers pizza desserts- everything was lip smacking! Service was super quick. Definitely re-visiting this place soon.'), ('Rated 2.0', 'RATED\n  Decent place with time tested recipes. Although, they need to bring in some innovation in the menu,\n\nThe staff can be a bit more polite.\n\nWe ordered for spinach tiki burger - as always - and it was not crunchy at this time. Speaking of which to staff was useless.'), ('Rated 4.0', 'RATED\n  My new fav place for ice cream. For those days you wanna reward urself. Cafe styled. Loved the ambience. Had tried all their chocolate sundae varients... Frnds who tried others varients also enjoyed it. Would love to visit again...'), ('Rated 4.0', 'RATED\n  Located on Sarjapur Road, opp. Fire station. It is cafe style ice palour serving wide variety. We have tried burger and pizza. Both were above average and good quality ingredients. Taste is refreshing. Value for money. Well-managed.'), ('Rated 5.0', 'RATED\n  Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â¥ 10/10 Hidden gem in Bellandur. Very nice and cosy place!\n\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89 Ambience: Excellent. Spacious and comfortable seating with cosy sofas and seats. Lighting is natural and pleasing.\n\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89 Food: Exceptionally good. Try the yummy sandwiches and do not miss the hot chocolate. The hot chocolate is to die for! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«\n\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89 Service: Great service. We were not made to wait too long for orders.\n\nWould recommend.'), ('Rated 4.0', 'RATED\n  Stoner is situated beside the Kaikondrahalli lake. Tried the desserts and pizzas here. Felt the pricing for desserts is on higher side compared to other places. The quality of the pizza was really good and very well made with crispy crust. Really loved the butter chicken pizza..'), ('Rated 5.0', 'RATED\n  Ordered late night delivery . So a plus point this place is open till late and is available on all delivery platforms\n\nTaste was good\nQuality was good\n\nDefinitely recommend this place'), ('Rated 5.0', 'RATED\n  Very good ambience and taste is awesome. Everytime you can try new item from the menu. Rare collection of item in the menu and signature ice creams are too good.. only near by cafe opened till 2am.'), ('Rated 5.0', "RATED\n  I've had one of the finest pizzas and ice creams here. Though prices are on higher side but I feel the quality that they provide deserves it.\nPizza bases is properly baked with perfect thickness, topped with nice juicy stuffs and feels so fresh. They never compromise with quality.\nIce creams see sooo mouth licking. I could feel nuts and chocolate chips coming in almost every single bite. It tasted so perfect."), ('Rated 4.0', "RATED\n  This is one place from where I order pizzas and burgers daily. Never tried any of their ice creams so can't comment.\nBarbeque lamb burger, Chicken Peri Peri burger, Mediterranean mutton keema pizza and Hot garlic chicken pizza are recommended."), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 3.0', "RATED\n  Stoner is the place to be for sundae preparations\nWe ordered different types of chocolate preparations although chocolate preparations don't have much variation in the taste\nCrunchy Rocher, chocolate decadence and Moonrock\nAll chocolate preparations almost have the same taste\nIt was difficult to find a variation"), ('Rated 3.0', 'RATED\n  Surprisingly this place is better than I expected.\npizza, burger and ice cream are good here\nOpen till 1 am means can be your next hangout place for midnight.'), ('Rated 4.0', 'RATED\n  Going by the ratings on zomato, I ordered there Chilli Paneer and Mushroom pizza just to figure out whether stoner will turn out to be a stunner and living up to my expectations it was really worth it.\n\nI personally felt some desi tadka well imbibed in the pizza.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8e Toppings including Pepper spiced paneer and mushroom, onion, capsicum, topped with cheese were rich in quantity and flavour. \n\nWould definitely love to try some of their other cuisines.'), ('Rated 4.0', "RATED\n  The best thing about this place is that it's open until 1.30AM and also has Zomato Gold. they have good ice cream options. Tiramisu is a must try. Though pizzas and burgers are the only food options available, they do a good job in making good of those. The ambience is good and has a positive vibe."), ('Rated 5.0', 'RATED\n  They serve really big size of burgers, enough to fill your tummy if you are too hungry. Also we ordered their red velvet dessert which was too yummy. We also tried pizzas that were awesome. Overall you can have some awesome food and some more awesome desserts their on a fair budget. Must visit if you are going on a date as you will spot a lot more couples there. Their ambience is also calm and peaceful with awesome aroma of desserts being made around.'), ('Rated 5.0', 'RATED\n  Peanut Butter Crunch and Tawa Paneer. Both delicious. I could easily have two of each. Zomato Gold adds to the incentive of visiting this place.'), ('Rated 5.0', 'RATED\n  We were out at night and we were craving for a shake and we stumbled upon Stoner. We decided to try to Red Velvet Cheesecake Shake and it was absolutely delicious. We are definitely going to be going visiting Stoner again to try out some of their cake shakes soon.\nHighly recommend this place'), ('Rated 1.0', "RATED\n  Probably the worst Stoner outlets I have been to in the entire Bangalore.\nThe main reason I visit stoner is for the zomato gold offer that they provide.\nThe guy taking the order did not tell me how zomato gold is used differently in their outlet (dunno how it is even possible) and later once he finished billing, He said me that if you have 2 zomato gold then only your third order is for free. It was ridiculously to listen to their logic.\n\nI need a explanation if this is the same process followed in all the other outlet or it's just special in yours."), ('Rated 4.0', 'RATED\n  It is a wonderful place to be..The pizzas and burger were very tasty.The way of presentation was also very nice...u cannot stop ordering again.The icecreams were also very delicious and the services were quick.simply liked the place and for pizza lovers a must place to visit.'), ('Rated 4.0', 'RATED\n  Stoner = Food + awesome icecreams..\nWith rise in cost of living, zomato gold is a blessing for enjoying the same food @50% disc..\nPizza and burger r d only option for food here...but taste is quite good..\nWe tried kadhai paneer pizza, cheese burger and cheese cake icecream...\nWould definitely come again...'), ('Rated 5.0', 'RATED\n  Peanut Butter Crunch and Tawa Paneer. Both delicious. I could easily have two of each. Zomato Gold adds to the incentive of visiting this place.'), ('Rated 5.0', 'RATED\n  We were out at night and we were craving for a shake and we stumbled upon Stoner. We decided to try to Red Velvet Cheesecake Shake and it was absolutely delicious. We are definitely going to be going visiting Stoner again to try out some of their cake shakes soon.\nHighly recommend this place'), ('Rated 1.0', "RATED\n  Probably the worst Stoner outlets I have been to in the entire Bangalore.\nThe main reason I visit stoner is for the zomato gold offer that they provide.\nThe guy taking the order did not tell me how zomato gold is used differently in their outlet (dunno how it is even possible) and later once he finished billing, He said me that if you have 2 zomato gold then only your third order is for free. It was ridiculously to listen to their logic.\n\nI need a explanation if this is the same process followed in all the other outlet or it's just special in yours."), ('Rated 4.0', 'RATED\n  It is a wonderful place to be..The pizzas and burger were very tasty.The way of presentation was also very nice...u cannot stop ordering again.The icecreams were also very delicious and the services were quick.simply liked the place and for pizza lovers a must place to visit.'), ('Rated 4.0', 'RATED\n  Stoner = Food + awesome icecreams..\nWith rise in cost of living, zomato gold is a blessing for enjoying the same food @50% disc..\nPizza and burger r d only option for food here...but taste is quite good..\nWe tried kadhai paneer pizza, cheese burger and cheese cake icecream...\nWould definitely come again...'), ('Rated 5.0', 'RATED\n  Peanut Butter Crunch and Tawa Paneer. Both delicious. I could easily have two of each. Zomato Gold adds to the incentive of visiting this place.'), ('Rated 5.0', 'RATED\n  We were out at night and we were craving for a shake and we stumbled upon Stoner. We decided to try to Red Velvet Cheesecake Shake and it was absolutely delicious. We are definitely going to be going visiting Stoner again to try out some of their cake shakes soon.\nHighly recommend this place'), ('Rated 1.0', "RATED\n  Probably the worst Stoner outlets I have been to in the entire Bangalore.\nThe main reason I visit stoner is for the zomato gold offer that they provide.\nThe guy taking the order did not tell me how zomato gold is used differently in their outlet (dunno how it is even possible) and later once he finished billing, He said me that if you have 2 zomato gold then only your third order is for free. It was ridiculously to listen to their logic.\n\nI need a explanation if this is the same process followed in all the other outlet or it's just special in yours."), ('Rated 4.0', 'RATED\n  It is a wonderful place to be..The pizzas and burger were very tasty.The way of presentation was also very nice...u cannot stop ordering again.The icecreams were also very delicious and the services were quick.simply liked the place and for pizza lovers a must place to visit.'), ('Rated 4.0', 'RATED\n  Stoner = Food + awesome icecreams..\nWith rise in cost of living, zomato gold is a blessing for enjoying the same food @50% disc..\nPizza and burger r d only option for food here...but taste is quite good..\nWe tried kadhai paneer pizza, cheese burger and cheese cake icecream...\nWould definitely come again...'), ('Rated 5.0', 'RATED\n  Best burgers in the world\nTawa paneer is my constant burger which I order on every visit.\nDelicious ice creams and very hardworking staff.\nGreat place.\nA musy visit!'), ('Rated 3.0', "RATED\n  Tried their ice creams which were very tasty and very creatively presented. Good choice of flavors. They also have pizzas and burgers buy we didn't get a chance to try any of those. The cold coffee was too milky and the ice tea was very sour. So the beverages were a little disappointing but the ice creams made it for it."), ('Rated 4.0', "RATED\n  Their pizzas are great. Have tried chilli chicken pizza and butter chicken pizza and liked it. Their dessert comes with a crunchy wafer and they're great too."), ('Rated 4.0', 'RATED\n  Perfect ambience.... good service and amazing food... sums up my visit to this joint...\nThe burgers and pizza are really tasty... everything we ordered was perfect\nwould definitely recommend this place'), ('Rated 5.0', 'RATED\n  The perfect place to have an ice cream. However they also provide a lot of options for food. But this place is just too comfortable and big.\n\nService is on point.\nTaste, you can trust upon.\n\nPaan flavour is the best'), ('Rated 5.0', 'RATED\n  Best burgers in the world\nTawa paneer is my constant burger which I order on every visit.\nDelicious ice creams and very hardworking staff.\nGreat place.\nA musy visit!'), ('Rated 3.0', "RATED\n  Tried their ice creams which were very tasty and very creatively presented. Good choice of flavors. They also have pizzas and burgers buy we didn't get a chance to try any of those. The cold coffee was too milky and the ice tea was very sour. So the beverages were a little disappointing but the ice creams made it for it."), ('Rated 4.0', "RATED\n  Their pizzas are great. Have tried chilli chicken pizza and butter chicken pizza and liked it. Their dessert comes with a crunchy wafer and they're great too."), ('Rated 4.0', 'RATED\n  Perfect ambience.... good service and amazing food... sums up my visit to this joint...\nThe burgers and pizza are really tasty... everything we ordered was perfect\nwould definitely recommend this place'), ('Rated 5.0', 'RATED\n  The perfect place to have an ice cream. However they also provide a lot of options for food. But this place is just too comfortable and big.\n\nService is on point.\nTaste, you can trust upon.\n\nPaan flavour is the best'), ('Rated 5.0', 'RATED\n  Best burgers in the world\nTawa paneer is my constant burger which I order on every visit.\nDelicious ice creams and very hardworking staff.\nGreat place.\nA musy visit!'), ('Rated 3.0', "RATED\n  Tried their ice creams which were very tasty and very creatively presented. Good choice of flavors. They also have pizzas and burgers buy we didn't get a chance to try any of those. The cold coffee was too milky and the ice tea was very sour. So the beverages were a little disappointing but the ice creams made it for it."), ('Rated 4.0', "RATED\n  Their pizzas are great. Have tried chilli chicken pizza and butter chicken pizza and liked it. Their dessert comes with a crunchy wafer and they're great too."), ('Rated 4.0', 'RATED\n  Perfect ambience.... good service and amazing food... sums up my visit to this joint...\nThe burgers and pizza are really tasty... everything we ordered was perfect\nwould definitely recommend this place'), ('Rated 5.0', 'RATED\n  The perfect place to have an ice cream. However they also provide a lot of options for food. But this place is just too comfortable and big.\n\nService is on point.\nTaste, you can trust upon.\n\nPaan flavour is the best'), ('Rated 5.0', 'RATED\n  Best burgers in the world\nTawa paneer is my constant burger which I order on every visit.\nDelicious ice creams and very hardworking staff.\nGreat place.\nA musy visit!'), ('Rated 3.0', "RATED\n  Tried their ice creams which were very tasty and very creatively presented. Good choice of flavors. They also have pizzas and burgers buy we didn't get a chance to try any of those. The cold coffee was too milky and the ice tea was very sour. So the beverages were a little disappointing but the ice creams made it for it."), ('Rated 4.0', "RATED\n  Their pizzas are great. Have tried chilli chicken pizza and butter chicken pizza and liked it. Their dessert comes with a crunchy wafer and they're great too."), ('Rated 4.0', 'RATED\n  Perfect ambience.... good service and amazing food... sums up my visit to this joint...\nThe burgers and pizza are really tasty... everything we ordered was perfect\nwould definitely recommend this place'), ('Rated 5.0', 'RATED\n  The perfect place to have an ice cream. However they also provide a lot of options for food. But this place is just too comfortable and big.\n\nService is on point.\nTaste, you can trust upon.\n\nPaan flavour is the best'), ('Rated 5.0', 'RATED\n  Best burgers in the world\nTawa paneer is my constant burger which I order on every visit.\nDelicious ice creams and very hardworking staff.\nGreat place.\nA musy visit!'), ('Rated 3.0', "RATED\n  Tried their ice creams which were very tasty and very creatively presented. Good choice of flavors. They also have pizzas and burgers buy we didn't get a chance to try any of those. The cold coffee was too milky and the ice tea was very sour. So the beverages were a little disappointing but the ice creams made it for it."), ('Rated 4.0', "RATED\n  Their pizzas are great. Have tried chilli chicken pizza and butter chicken pizza and liked it. Their dessert comes with a crunchy wafer and they're great too."), ('Rated 4.0', 'RATED\n  Perfect ambience.... good service and amazing food... sums up my visit to this joint...\nThe burgers and pizza are really tasty... everything we ordered was perfect\nwould definitely recommend this place'), ('Rated 5.0', 'RATED\n  The perfect place to have an ice cream. However they also provide a lot of options for food. But this place is just too comfortable and big.\n\nService is on point.\nTaste, you can trust upon.\n\nPaan flavour is the best'), ('Rated 5.0', 'RATED\n  Best burgers in the world\nTawa paneer is my constant burger which I order on every visit.\nDelicious ice creams and very hardworking staff.\nGreat place.\nA musy visit!'), ('Rated 3.0', "RATED\n  Tried their ice creams which were very tasty and very creatively presented. Good choice of flavors. They also have pizzas and burgers buy we didn't get a chance to try any of those. The cold coffee was too milky and the ice tea was very sour. So the beverages were a little disappointing but the ice creams made it for it."), ('Rated 4.0', "RATED\n  Their pizzas are great. Have tried chilli chicken pizza and butter chicken pizza and liked it. Their dessert comes with a crunchy wafer and they're great too."), ('Rated 4.0', 'RATED\n  Perfect ambience.... good service and amazing food... sums up my visit to this joint...\nThe burgers and pizza are really tasty... everything we ordered was perfect\nwould definitely recommend this place'), ('Rated 5.0', 'RATED\n  The perfect place to have an ice cream. However they also provide a lot of options for food. But this place is just too comfortable and big.\n\nService is on point.\nTaste, you can trust upon.\n\nPaan flavour is the best'), ('Rated 5.0', 'RATED\n  I have order Chipotle veggie pizza and must say it was amazing. Base was thin and crispy. It was better than those sellers who are specifically for pizza. Loved it\n\nI ordered Cjuan Hawaian pizza. And yea as usual it was yummy. Now stoner has gained the position of favourite. Love it'), ('Rated 5.0', "RATED\n  Our go to place for burgers and ice reams and late night cravings. And with zomato gold, the approach is more pocket friendly. Loved their chicken Peri Peri burger. The best part being the fresh buns and the amazing sauce ... Yumm\n\nIce creams here are cold stone variety, but these guys are quite generous with the toppings if compared with other competitors. Lots of nuts and nutty fudgy the best of the lot with lots and lots of caramelised nuts!!\n\nThe place has no competition closeby and has maintained it's quality throughout the visits that I have made.. kudos to the team !! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a"), ('Rated 3.0', "RATED\n  The place is amazing. Food taste is good. Things I didn't like it\n\n1) Near the dine inn there was some ceiling work going on and I was not happy about it cause there was dust flying.\n\n2) Ordered for the Cheesy chicken burger, taste was good, but there was just a slice of cheese. There was no hype as per the details given in the description of the product.\n\n3) The Oreo shake could have been a bit thick, it was watery. But again the test was good.\n\nHope the management takes care of these issues.\n\nAgain the food was good and the presentation was superb. Keep it up."), ('Rated 4.0', "RATED\n  A nice place with a seating capacity of 20 -30 around. They have good variety of ice-creams , burger and pizza's.\n\nVisited the place quite a few times for ice-creams but this time got a chance to try their burgers and pizza. I really liked the pizza base and bun used for the burgers.\n\nAlso the zomato gold membership add to the advantage on the price."), ('Rated 5.0', 'RATED\n  I have order Chipotle veggie pizza and must say it was amazing. Base was thin and crispy. It was better than those sellers who are specifically for pizza. Loved it\n\nI ordered Cjuan Hawaian pizza. And yea as usual it was yummy. Now stoner has gained the position of favourite. Love it'), ('Rated 5.0', "RATED\n  Our go to place for burgers and ice reams and late night cravings. And with zomato gold, the approach is more pocket friendly. Loved their chicken Peri Peri burger. The best part being the fresh buns and the amazing sauce ... Yumm\n\nIce creams here are cold stone variety, but these guys are quite generous with the toppings if compared with other competitors. Lots of nuts and nutty fudgy the best of the lot with lots and lots of caramelised nuts!!\n\nThe place has no competition closeby and has maintained it's quality throughout the visits that I have made.. kudos to the team !! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a"), ('Rated 3.0', "RATED\n  The place is amazing. Food taste is good. Things I didn't like it\n\n1) Near the dine inn there was some ceiling work going on and I was not happy about it cause there was dust flying.\n\n2) Ordered for the Cheesy chicken burger, taste was good, but there was just a slice of cheese. There was no hype as per the details given in the description of the product.\n\n3) The Oreo shake could have been a bit thick, it was watery. But again the test was good.\n\nHope the management takes care of these issues.\n\nAgain the food was good and the presentation was superb. Keep it up."), ('Rated 4.0', "RATED\n  A nice place with a seating capacity of 20 -30 around. They have good variety of ice-creams , burger and pizza's.\n\nVisited the place quite a few times for ice-creams but this time got a chance to try their burgers and pizza. I really liked the pizza base and bun used for the burgers.\n\nAlso the zomato gold membership add to the advantage on the price."), ('Rated 5.0', 'RATED\n  I have order Chipotle veggie pizza and must say it was amazing. Base was thin and crispy. It was better than those sellers who are specifically for pizza. Loved it\n\nI ordered Cjuan Hawaian pizza. And yea as usual it was yummy. Now stoner has gained the position of favourite. Love it'), ('Rated 5.0', "RATED\n  Our go to place for burgers and ice reams and late night cravings. And with zomato gold, the approach is more pocket friendly. Loved their chicken Peri Peri burger. The best part being the fresh buns and the amazing sauce ... Yumm\n\nIce creams here are cold stone variety, but these guys are quite generous with the toppings if compared with other competitors. Lots of nuts and nutty fudgy the best of the lot with lots and lots of caramelised nuts!!\n\nThe place has no competition closeby and has maintained it's quality throughout the visits that I have made.. kudos to the team !! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a"), ('Rated 3.0', "RATED\n  The place is amazing. Food taste is good. Things I didn't like it\n\n1) Near the dine inn there was some ceiling work going on and I was not happy about it cause there was dust flying.\n\n2) Ordered for the Cheesy chicken burger, taste was good, but there was just a slice of cheese. There was no hype as per the details given in the description of the product.\n\n3) The Oreo shake could have been a bit thick, it was watery. But again the test was good.\n\nHope the management takes care of these issues.\n\nAgain the food was good and the presentation was superb. Keep it up."), ('Rated 4.0', "RATED\n  A nice place with a seating capacity of 20 -30 around. They have good variety of ice-creams , burger and pizza's.\n\nVisited the place quite a few times for ice-creams but this time got a chance to try their burgers and pizza. I really liked the pizza base and bun used for the burgers.\n\nAlso the zomato gold membership add to the advantage on the price."), ('Rated 5.0', 'RATED\n  I have order Chipotle veggie pizza and must say it was amazing. Base was thin and crispy. It was better than those sellers who are specifically for pizza. Loved it\n\nI ordered Cjuan Hawaian pizza. And yea as usual it was yummy. Now stoner has gained the position of favourite. Love it'), ('Rated 5.0', "RATED\n  Our go to place for burgers and ice reams and late night cravings. And with zomato gold, the approach is more pocket friendly. Loved their chicken Peri Peri burger. The best part being the fresh buns and the amazing sauce ... Yumm\n\nIce creams here are cold stone variety, but these guys are quite generous with the toppings if compared with other competitors. Lots of nuts and nutty fudgy the best of the lot with lots and lots of caramelised nuts!!\n\nThe place has no competition closeby and has maintained it's quality throughout the visits that I have made.. kudos to the team !! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a"), ('Rated 3.0', "RATED\n  The place is amazing. Food taste is good. Things I didn't like it\n\n1) Near the dine inn there was some ceiling work going on and I was not happy about it cause there was dust flying.\n\n2) Ordered for the Cheesy chicken burger, taste was good, but there was just a slice of cheese. There was no hype as per the details given in the description of the product.\n\n3) The Oreo shake could have been a bit thick, it was watery. But again the test was good.\n\nHope the management takes care of these issues.\n\nAgain the food was good and the presentation was superb. Keep it up."), ('Rated 4.0', "RATED\n  A nice place with a seating capacity of 20 -30 around. They have good variety of ice-creams , burger and pizza's.\n\nVisited the place quite a few times for ice-creams but this time got a chance to try their burgers and pizza. I really liked the pizza base and bun used for the burgers.\n\nAlso the zomato gold membership add to the advantage on the price."), ('Rated 5.0', 'RATED\n  I have order Chipotle veggie pizza and must say it was amazing. Base was thin and crispy. It was better than those sellers who are specifically for pizza. Loved it\n\nI ordered Cjuan Hawaian pizza. And yea as usual it was yummy. Now stoner has gained the position of favourite. Love it'), ('Rated 5.0', "RATED\n  Our go to place for burgers and ice reams and late night cravings. And with zomato gold, the approach is more pocket friendly. Loved their chicken Peri Peri burger. The best part being the fresh buns and the amazing sauce ... Yumm\n\nIce creams here are cold stone variety, but these guys are quite generous with the toppings if compared with other competitors. Lots of nuts and nutty fudgy the best of the lot with lots and lots of caramelised nuts!!\n\nThe place has no competition closeby and has maintained it's quality throughout the visits that I have made.. kudos to the team !! Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a"), ('Rated 3.0', "RATED\n  The place is amazing. Food taste is good. Things I didn't like it\n\n1) Near the dine inn there was some ceiling work going on and I was not happy about it cause there was dust flying.\n\n2) Ordered for the Cheesy chicken burger, taste was good, but there was just a slice of cheese. There was no hype as per the details given in the description of the product.\n\n3) The Oreo shake could have been a bit thick, it was watery. But again the test was good.\n\nHope the management takes care of these issues.\n\nAgain the food was good and the presentation was superb. Keep it up."), ('Rated 4.0', "RATED\n  A nice place with a seating capacity of 20 -30 around. They have good variety of ice-creams , burger and pizza's.\n\nVisited the place quite a few times for ice-creams but this time got a chance to try their burgers and pizza. I really liked the pizza base and bun used for the burgers.\n\nAlso the zomato gold membership add to the advantage on the price.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
3.5/5 : Precise rating\nWent here on a weekday noon hoping for some good food. The ambience is average, wooden tables n stuff, typical cafe - not bad.\nThe menu is more focused towards meat eaters than vegetarians.\nWe ordered a paneer steak plus a paneer bread bowl along with a couple of lemonades. Paneer steak is definitely not worth the price n is quite average a dish. Do savour the bread bowl though, nice one.\nYou can surely go, especially if you have gold, else skip it.'), ('Rated 4.0', 'RATED\n  Been here for Sunday lunch.\n\nFood: 4/5 - The food overall was tasty and presentation was really really good. Quantity wise the veg steak was on the lesser side. The other dish which was stuffed bread loaf was tasty as well as good in quantity.\n\nAmbiance: 3.5/5 - nothing to special to speak about. You will notice the tall chairs.\n\nService: 4/5 - prompt service and courteous staff.\n\nVerdict - with zomato gold.. A must try.'), ('Rated 5.0', "RATED\n  Ordered Chicken almond steak & Paneer steak. Both were very good. Quality of the food is too good however I feel that the quantity is bit less as compared to it's price. Ambience of Pazzo is dope. I would recommend this place."), ('Rated 4.0', 'RATED\n  Nice cozy place with nicely painted walls and a warm ambiance.\n\nWe had -\nChex cottage pops (4/5) Spicy Indian flavour.\n\nDesi Arabbiata (3.5/5) - we had to add ketchup to make it better\n\nThe dancing bucket - 4/5 - A new thing to have , but could have been better. The bread was too hard to slice through easily.\n\nChocolate shake - 5/5\n\nOverall, a nice place to have food with cozy atmosphere.'), ('Rated 3.0', 'RATED\n  Not a very big or fancy palce. But has a modern ambiance.\nThe host is very polite and humble.\nThe food is only average but would recommend to try bread basket which is a Pazzo speciality. Like the way it is served its new and interesting.'), ('Rated 4.0', 'RATED\n  With good lights and decoration, ambience of this place is really lit up!\nMany good options available in salads. And Italian is also really good.\nService is very polite and courteous.'), ('Rated 4.0', "RATED\n  The Italian food here is actually quite unique. Because it's blended with Indian taste, one can be skeptical about trying it. But it's a good twist. The shakes are not too great but the bacon arrabiata spaghetti is really good!"), ('Rated 4.0', "RATED\n  Saw this place close by so went to try...\n\nThere is no dedicated parking like pretty much everywhere is HSR.\nAnd when we arrived there were few customers so didn't have any problem in getting table.\n\nIt has nice ambience with good road side window seats.\nCertain things can be improved though, like additional TV sets or placement of the one existing but overall it was good.\n\nWe ordered lemon soda and Lemon mint, both were good.\n\nChicken meat balls were good, with the best thing being the spicy sauce that was served with it. Must try!!\n\nWe also ordered pizza but it was ok, it felt like the frozen pizzas you can get in supermarket. Must have been because pizza base was not freshly made, but pizza sauce and toppings were good.\n\nService was quick and staff was courteous.\n\nOverall it was a good experience. Worth trying!!"), ('Rated 1.0', "RATED\n  Went here while a offer was running , 50 rs for a 9 inch pizza\nAt the gate we were informed that they ran out of pizza base but we could get pasta or biriyani instead.. After waiting outside for a while we finally got a seat.. They only had alfredo on the offer.. So we got two of those one veg and one non veg ...no garlic bread with it. The quantity wasn't even enough for a 10 year old kid! I also ordered for a drink, which came after half of my pasta was over . The drink was served in a paper cup.. When i asked the server to transer it to a glass cup, he was like you do it!! Then why do you charge us service tax!! Really rude\n\nObv the pasta wasn't enough for anyone, so we ordered a burger, had to call the waiter several times\nAfter that they took so long just to serve a burger..No fries with it When asked for the bill, they just gave it directly without putting it in a Black diary! How insulting\nOverall wouldn't come here ever again\nSuch a disappointment"), ('Rated 4.0', 'RATED\n  A nice ambiance to spend a casual evening over cafe food with some friends .. itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s right on the main road in Hsr. Bright place, good food and courteous staff. Of all the items I ordered I feel the pizza wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t as satisfactory as it should have been but remaining food was good.'), ('Rated 5.0', 'RATED\n  Loved the Bacon Desi Arrabiata Penne Pasta - A perfect blend on Arrabiata Sauce with Indian Spices. Blueberry Frizzer was okay as a mocktail.\n\nGreat ambiance, polite staffs. It has a great fusion of Indian spices and Italian taste..Pazzo is a perfect place for your Italian cravings'), ('Rated 5.0', 'RATED\n  Fantastic food and ambience. New place in HSR for good food. Great suggestion by love joy for Bread Basket. Ordered Italian Chetinad Pizza and South American Veg Bread Bucket. Overall tasty and delightful experience.'), ('Rated 4.0', "RATED\n  One fine afternoon, we headed out from office for lunch and were in search of some good American food. Having been to most of the cafes in HSR, I wanted to try out something different and came across Pazzo.\n\nI wasn't sure how the experience was going to be as the place was empty when we reached. Nevertheless, we took a chance and placed our order as the menu, with an Indo-western twist, looked fascinating.\n\nFirst up was the 'Meaty Thanos', a burger stuffed with two kinds of meat. Rather than patty, there were chunks of meat, with a hint of Indian spices. It was flavourful and filling!\n\nWe then tried the 'Hyderabadi Pizza', which had a crispy crust, generous amounts of cheese and flavourful meat.\n\nSaving the best for the last, you should definitely try their 'Steak Biriyani', a unique and excellent dish. We tried the Pork Steak Biriyani and I could never imagine that it could ever taste so good.\n\nIf You're looking for the best of both worlds, Pazzo is the place to go."), ('Rated 4.0', 'RATED\n  Really like their collection of pizzas. Loved the Lord of the rings with red sauce. Their vanilla smoothie was disappointing. The best was penne pasta. And love that they have Zomato Gold! ??'), ('Rated 4.0', 'RATED\n  Interiors are very thoughtfully done though the chairs were quite uncomfortable... Coming to foodÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Pizza was delicious and was quite different, it was great fusion of Indian and Italian taste which I absolutely loved. Pasta was very thin, bland and watery which was big disappointment. Service was ok.. We did give our feedback about the pasta then and there.. Hope that would be taken into consideration the next time we visit..'), ('Rated 4.0', 'RATED\n  This place is located in HSR layout with amazing view from the restaurant. Their burgers are worth every penny.\nI ordered meaty burger, mary jane burger and chettinad pizza\nBoth the burgers were 10/5.\nThe pizza was good though not something out of the world\nIf you are in HSR and in mood of some finger licking fast food this place is highly recommended'), ('Rated 5.0', "RATED\n  Pazzo is the place to go if u r HSR & unable to decide what to eat. The ambience u encounter when u enter justifies it's 4.4 rating, very courteous waiters & their every so delighting food add to it.\nDon't miss out on the bread buckets, this was the first time I tried & would return just for this ?"), ('Rated 4.0', "RATED\n  It's a very good place for having proper Italian food. The taste is authentic and pretty good too. I had the Italian Chicken Burger(the taste was a bit bland), Chicken Steak, The Bread Basket, and Arrabiata Pasta. All were up to the mark. The Peach Iced Tea was also refreshing.\nI would say this place is worth a try. Along with the food it has a good ambiance and plays good music too.\n\nFood : 4.5/5\nAmbiance: 4/5\nService: 4.5/5\nMusic: 4/5"), ('Rated 4.0', 'RATED\n  Interiors are very thoughtfully done though the chairs were quite uncomfortable... Coming to foodÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Pizza was delicious and was quite different, it was great fusion of Indian and Italian taste which I absolutely loved. Pasta was very thin, bland and watery which was big disappointment. Service was ok.. We did give our feedback about the pasta then and there.. Hope that would be taken into consideration the next time we visit..'), ('Rated 4.0', 'RATED\n  This place is located in HSR layout with amazing view from the restaurant. Their burgers are worth every penny.\nI ordered meaty burger, mary jane burger and chettinad pizza\nBoth the burgers were 10/5.\nThe pizza was good though not something out of the world\nIf you are in HSR and in mood of some finger licking fast food this place is highly recommended'), ('Rated 5.0', "RATED\n  Pazzo is the place to go if u r HSR & unable to decide what to eat. The ambience u encounter when u enter justifies it's 4.4 rating, very courteous waiters & their every so delighting food add to it.\nDon't miss out on the bread buckets, this was the first time I tried & would return just for this ?"), ('Rated 4.0', "RATED\n  It's a very good place for having proper Italian food. The taste is authentic and pretty good too. I had the Italian Chicken Burger(the taste was a bit bland), Chicken Steak, The Bread Basket, and Arrabiata Pasta. All were up to the mark. The Peach Iced Tea was also refreshing.\nI would say this place is worth a try. Along with the food it has a good ambiance and plays good music too.\n\nFood : 4.5/5\nAmbiance: 4/5\nService: 4.5/5\nMusic: 4/5"), ('Rated 4.0', 'RATED\n  Interiors are very thoughtfully done though the chairs were quite uncomfortable... Coming to foodÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97 Pizza was delicious and was quite different, it was great fusion of Indian and Italian taste which I absolutely loved. Pasta was very thin, bland and watery which was big disappointment. Service was ok.. We did give our feedback about the pasta then and there.. Hope that would be taken into consideration the next time we visit..'), ('Rated 4.0', 'RATED\n  This place is located in HSR layout with amazing view from the restaurant. Their burgers are worth every penny.\nI ordered meaty burger, mary jane burger and chettinad pizza\nBoth the burgers were 10/5.\nThe pizza was good though not something out of the world\nIf you are in HSR and in mood of some finger licking fast food this place is highly recommended'), ('Rated 5.0', "RATED\n  Pazzo is the place to go if u r HSR & unable to decide what to eat. The ambience u encounter when u enter justifies it's 4.4 rating, very courteous waiters & their every so delighting food add to it.\nDon't miss out on the bread buckets, this was the first time I tried & would return just for this ?"), ('Rated 4.0', "RATED\n  It's a very good place for having proper Italian food. The taste is authentic and pretty good too. I had the Italian Chicken Burger(the taste was a bit bland), Chicken Steak, The Bread Basket, and Arrabiata Pasta. All were up to the mark. The Peach Iced Tea was also refreshing.\nI would say this place is worth a try. Along with the food it has a good ambiance and plays good music too.\n\nFood : 4.5/5\nAmbiance: 4/5\nService: 4.5/5\nMusic: 4/5"), ('Rated 5.0', "RATED\n  The ambience and location is nice. They have two types of furniture. Tall chairs which are classy and comfortable, and long benches. They have very different food items on offer. Definitely recommend to those looking for a change from the regular cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©s with similar menus. With Zomato Gold, it's one of the most value for money places!"), ('Rated 4.0', 'RATED\n  This new opened outlet in HSR has a nice and vibrant ambience that hits you with surprise when you enter the cafe.\nThe food menu has a lot of different choices in all its categories.\nThe staff is courteous and hospitable.\nWe ordered garlic bread,CHEX-IT pizza,fiery herb wedges and The south American bread bucket which were quite tasty.\nBread buckets are a speciality here and are a must try.\n.\n.\nFOLLOW ME ON INSTAGRAM @bhojanpatrika &\n@quaintsouls\n.\nFood-4/5\nAmbience-5/5\nService-4/5\nValue for money-5/5\nOverall- 4.5/5'), ('Rated 5.0', "RATED\n  The ambience and location is nice. They have two types of furniture. Tall chairs which are classy and comfortable, and long benches. They have very different food items on offer. Definitely recommend to those looking for a change from the regular cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©s with similar menus. With Zomato Gold, it's one of the most value for money places!"), ('Rated 4.0', 'RATED\n  This new opened outlet in HSR has a nice and vibrant ambience that hits you with surprise when you enter the cafe.\nThe food menu has a lot of different choices in all its categories.\nThe staff is courteous and hospitable.\nWe ordered garlic bread,CHEX-IT pizza,fiery herb wedges and The south American bread bucket which were quite tasty.\nBread buckets are a speciality here and are a must try.\n.\n.\nFOLLOW ME ON INSTAGRAM @bhojanpatrika &\n@quaintsouls\n.\nFood-4/5\nAmbience-5/5\nService-4/5\nValue for money-5/5\nOverall- 4.5/5'), ('Rated 5.0', "RATED\n  The ambience and location is nice. They have two types of furniture. Tall chairs which are classy and comfortable, and long benches. They have very different food items on offer. Definitely recommend to those looking for a change from the regular cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©s with similar menus. With Zomato Gold, it's one of the most value for money places!"), ('Rated 4.0', 'RATED\n  This new opened outlet in HSR has a nice and vibrant ambience that hits you with surprise when you enter the cafe.\nThe food menu has a lot of different choices in all its categories.\nThe staff is courteous and hospitable.\nWe ordered garlic bread,CHEX-IT pizza,fiery herb wedges and The south American bread bucket which were quite tasty.\nBread buckets are a speciality here and are a must try.\n.\n.\nFOLLOW ME ON INSTAGRAM @bhojanpatrika &\n@quaintsouls\n.\nFood-4/5\nAmbience-5/5\nService-4/5\nValue for money-5/5\nOverall- 4.5/5'), ('Rated 5.0', "RATED\n  The ambience and location is nice. They have two types of furniture. Tall chairs which are classy and comfortable, and long benches. They have very different food items on offer. Definitely recommend to those looking for a change from the regular cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©s with similar menus. With Zomato Gold, it's one of the most value for money places!"), ('Rated 4.0', 'RATED\n  This new opened outlet in HSR has a nice and vibrant ambience that hits you with surprise when you enter the cafe.\nThe food menu has a lot of different choices in all its categories.\nThe staff is courteous and hospitable.\nWe ordered garlic bread,CHEX-IT pizza,fiery herb wedges and The south American bread bucket which were quite tasty.\nBread buckets are a speciality here and are a must try.\n.\n.\nFOLLOW ME ON INSTAGRAM @bhojanpatrika &\n@quaintsouls\n.\nFood-4/5\nAmbience-5/5\nService-4/5\nValue for money-5/5\nOverall- 4.5/5'), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', 'RATED\n  Pretty decent place right on the Main Street with parking space in HSR - Sector 7.\nThe food is mostly fusion of chettinad, Indian and Italian, sounds bizarre but the food tastes good more like different from the usual if not great.\nIÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92m a vegetarian so tried the paneer poppers which was small chunks if paneer fried in spicy masala, the bread bucket- Indian style and mama Mia pizza.\nI would rate food as 3.5/5, ambiance - 4/5, service - 3.5/5 and location -4.5/5.\nI might not go there again but itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s definitely worth visiting once!'), ('Rated 5.0', "RATED\n  Great ambience. Food hygiene is top rate here.\nMust try the fusion bread bucket.\nFish starters are delicious and nicely presented.\nOverall it's a superb zomato gold restaurant."), ('Rated 4.0', "RATED\n  So I visited this place at a weekday, and the place was totally empty which works best for me.\nThe first impression was CLEANLINESS! neat & tidy.\n\nNote : I was diagnosed with food poisoning after i left the cafe, which I don't blame the cafe for as something i was allergic to got it triggered.\nBut still i felt something was very sour and foul taste of 'Carribean Custard'\n\nRest i ordered a Chicken Burger and many more stuff. All tasted very well. Kudos to the chef! You can use Zomato Gold as well as Dineout at this place (either one).\n\nOverall : 4.5/5\n\nAmbience : 5/5\nStaff : 4/5\nService : 4/5\nPrice : 5/5\nFood : 4/5"), ('Rated 2.0', "RATED\n  The ambience is good. But they probably didn't do well in trying to create fusion food. We had the Italian salsa bread bucket but the bread was not fresh and chewey. Chettinad potato wedges were ok and tandoor tomato basil pizza was good."), ('Rated 3.0', "RATED\n  What can be the best Sunday activity for a foodie than to try out new awesome places.Pazzo happened on a bright Sunday lunch with a group of new friends. Pazzo is an Italian fusion restaurant with lots of surprises for the food lovers like me.Pazzo means craziness which actually stands for the zeal of their chefs who has brought out the uniqueness in the most common ingredients.Their bread bucket is to die for and a must try both the veg and non-veg version. They offer burgers in an unique fusion way.Veg pizza is worth tasting .Some of the dishes I found a bit salty but once it's notified it has been taken care of. Being a not so dessert person,I also fell in love with their Caribbean Custered which is quite a famous dish of there's.located in a very convenient place in HSR, Pazzo is definitely a wow listed restaurant for me and would like to go back again for the awesome food they serve.... Keep up the good work team Pazzo..."), ('Rated 4.0', 'RATED\n  Visited this place on sunday evening, nice decor , lightening . We ordered Dancing bucket chicken it was just awesome , cheesy and treat to eye as well.\nService was good, staff were polite. Overall a very good experience.'), ('Rated 3.0', "RATED\n  What can be the best Sunday activity for a foodie than to try out new awesome places.Pazzo happened on a bright Sunday lunch with a group of new friends. Pazzo is an Italian fusion restaurant with lots of surprises for the food lovers like me.Pazzo means craziness which actually stands for the zeal of their chefs who has brought out the uniqueness in the most common ingredients.Their bread bucket is to die for and a must try both the veg and non-veg version. They offer burgers in an unique fusion way.Veg pizza is worth tasting .Some of the dishes I found a bit salty but once it's notified it has been taken care of. Being a not so dessert person,I also fell in love with their Caribbean Custered which is quite a famous dish of there's.located in a very convenient place in HSR, Pazzo is definitely a wow listed restaurant for me and would like to go back again for the awesome food they serve.... Keep up the good work team Pazzo..."), ('Rated 4.0', 'RATED\n  Visited this place on sunday evening, nice decor , lightening . We ordered Dancing bucket chicken it was just awesome , cheesy and treat to eye as well.\nService was good, staff were polite. Overall a very good experience.'), ('Rated 3.0', "RATED\n  What can be the best Sunday activity for a foodie than to try out new awesome places.Pazzo happened on a bright Sunday lunch with a group of new friends. Pazzo is an Italian fusion restaurant with lots of surprises for the food lovers like me.Pazzo means craziness which actually stands for the zeal of their chefs who has brought out the uniqueness in the most common ingredients.Their bread bucket is to die for and a must try both the veg and non-veg version. They offer burgers in an unique fusion way.Veg pizza is worth tasting .Some of the dishes I found a bit salty but once it's notified it has been taken care of. Being a not so dessert person,I also fell in love with their Caribbean Custered which is quite a famous dish of there's.located in a very convenient place in HSR, Pazzo is definitely a wow listed restaurant for me and would like to go back again for the awesome food they serve.... Keep up the good work team Pazzo..."), ('Rated 4.0', 'RATED\n  Visited this place on sunday evening, nice decor , lightening . We ordered Dancing bucket chicken it was just awesome , cheesy and treat to eye as well.\nService was good, staff were polite. Overall a very good experience.'), ('Rated 1.0', 'RATED\n  One of the worst places in Bangalore. They have some wierd food that tastes really bad. Not sure why this place has so high ratings. Pathetic experience. Consider changing your menu..'), ('Rated 1.0', 'RATED\n  One of the worst places in Bangalore. They have some wierd food that tastes really bad. Not sure why this place has so high ratings. Pathetic experience. Consider changing your menu..'), ('Rated 1.0', 'RATED\n  One of the worst places in Bangalore. They have some wierd food that tastes really bad. Not sure why this place has so high ratings. Pathetic experience. Consider changing your menu..'), ('Rated 4.0', 'RATED\n  Visited this place on a weekday, so it was quiet with good music playing in the background. We ordered a bread bucket which was something different and tasted good too. Also, we ordered an alfredo pasta which was decent. The quantity of the food as well as the rates are decent.'), ('Rated 4.0', 'RATED\n  Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91PazzoÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92 is a nice little eatery in HSR. I googled the word and found that it translates to insane/crazy in Italian ? I guess the name was chosen for the insanely good food that this place serves!. We went here over this weekend for dinner. The place is not very big, and can feel a little cramped when itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s full. Most of the seating consists of high chairs; there are a couple of benches as well. ...\nRead full post on hungrypandadiaries.wordpress.com'), ('Rated 3.0', 'RATED\n  I was a bit apprehensive about the place at first when I saw the desi flavors in all the dishes but I was really happy when my pasta arrived. The double cheese Alfredo was perfect and I loved it. The Mary Jane burger was just okay but the pasta sure nailed it!\n\nMy verdict: Go for their pasta!'), ('Rated 4.0', 'RATED\n  The food is amazing. It is new and different. I had bread bucket, it was awesome. Nice flavour. The bread was crispy. Then i had fusion chicken biriyani. That was good too. It was not spicy. The price is also really descent. I would recommend everyone to go here.'), ('Rated 5.0', 'RATED\n  Food:\n5 stars. Interesting menu and everything we had was sumptuous. Tried paneer bunny chow and tofu salad. Drinks were also very refreshing.\nAmbience:\n4.5 stars. Good cozy ambience. Relaxing Sunday brunch and good place to hangout with friends with not much crowd.\nService:\n5 stars. Staff is very courteous and friendly. Prompt delivery and managed our requests very effectively.'), ('Rated 4.0', 'RATED\n  Visited this place on a weekday, so it was quiet with good music playing in the background. We ordered a bread bucket which was something different and tasted good too. Also, we ordered an alfredo pasta which was decent. The quantity of the food as well as the rates are decent.'), ('Rated 4.0', 'RATED\n  Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91PazzoÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92 is a nice little eatery in HSR. I googled the word and found that it translates to insane/crazy in Italian ? I guess the name was chosen for the insanely good food that this place serves!. We went here over this weekend for dinner. The place is not very big, and can feel a little cramped when itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s full. Most of the seating consists of high chairs; there are a couple of benches as well. ...\nRead full post on hungrypandadiaries.wordpress.com'), ('Rated 3.0', 'RATED\n  I was a bit apprehensive about the place at first when I saw the desi flavors in all the dishes but I was really happy when my pasta arrived. The double cheese Alfredo was perfect and I loved it. The Mary Jane burger was just okay but the pasta sure nailed it!\n\nMy verdict: Go for their pasta!'), ('Rated 4.0', 'RATED\n  The food is amazing. It is new and different. I had bread bucket, it was awesome. Nice flavour. The bread was crispy. Then i had fusion chicken biriyani. That was good too. It was not spicy. The price is also really descent. I would recommend everyone to go here.'), ('Rated 5.0', 'RATED\n  Food:\n5 stars. Interesting menu and everything we had was sumptuous. Tried paneer bunny chow and tofu salad. Drinks were also very refreshing.\nAmbience:\n4.5 stars. Good cozy ambience. Relaxing Sunday brunch and good place to hangout with friends with not much crowd.\nService:\n5 stars. Staff is very courteous and friendly. Prompt delivery and managed our requests very effectively.'), ('Rated 4.0', 'RATED\n  Visited this place on a weekday, so it was quiet with good music playing in the background. We ordered a bread bucket which was something different and tasted good too. Also, we ordered an alfredo pasta which was decent. The quantity of the food as well as the rates are decent.'), ('Rated 4.0', 'RATED\n  Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91PazzoÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92 is a nice little eatery in HSR. I googled the word and found that it translates to insane/crazy in Italian ? I guess the name was chosen for the insanely good food that this place serves!. We went here over this weekend for dinner. The place is not very big, and can feel a little cramped when itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s full. Most of the seating consists of high chairs; there are a couple of benches as well. ...\nRead full post on hungrypandadiaries.wordpress.com'), ('Rated 3.0', 'RATED\n  I was a bit apprehensive about the place at first when I saw the desi flavors in all the dishes but I was really happy when my pasta arrived. The double cheese Alfredo was perfect and I loved it. The Mary Jane burger was just okay but the pasta sure nailed it!\n\nMy verdict: Go for their pasta!'), ('Rated 4.0', 'RATED\n  The food is amazing. It is new and different. I had bread bucket, it was awesome. Nice flavour. The bread was crispy. Then i had fusion chicken biriyani. That was good too. It was not spicy. The price is also really descent. I would recommend everyone to go here.'), ('Rated 5.0', 'RATED\n  Food:\n5 stars. Interesting menu and everything we had was sumptuous. Tried paneer bunny chow and tofu salad. Drinks were also very refreshing.\nAmbience:\n4.5 stars. Good cozy ambience. Relaxing Sunday brunch and good place to hangout with friends with not much crowd.\nService:\n5 stars. Staff is very courteous and friendly. Prompt delivery and managed our requests very effectively.'), ('Rated 5.0', 'RATED\n  Loved this place. Simple and elegant ambience with nice service. Cuisine is Indo Italian fusion with lots and lots of unique dishes which you donÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t get anywhere else in Bangalore. Tried a wings starter, burger, pizza, steak, garlic bread, lime juice and their special basket. Definitely going back to try more varieties on their menu.'), ('Rated 2.0', 'RATED\n  Cannot comment on ambience. Have only ordered in. Tried a couple of their pork options. Very poor quality of meat, a lot of it is just plain inedible (gristle and fat). The menu sounds promising but the quality of the ingredients needs work.'), ('Rated 4.0', 'RATED\n  This is a cozy restaurant in HSR.\nUmbrella twist(pork)- good\nSteak tandoor(chicken)-good\nDesi Arabiatta(beef)- Highly recommended and my fav\nCarribean custard-This dessert was average\n\nOverall food was good, service was ok and the cost was less.'), ('Rated 5.0', 'RATED\n  4.5*\nPazzo an italian word meaning Mad..\nI visited this this place with few of my friends and did try a lot of dishes..\n\nLocation- Near Salarpuria Serenity\nAmbience- Simple and nice\nFood- We tried potato wedges, paneer pops in wasabi sauce, double cheese alfredo pasta and mexican pizza\nYou can try all the items other than potato wedges which tasted okay...\nService- Upto the mark\nOverall a nice experience with recommendation to friends...'), ('Rated 5.0', 'RATED\n  Nothing screams Italian like Pazzo does. Always served with smiling faces with having a fusion Italian touch to it\n\nOne of the most swankiest places in HSR having a twist to how Italian food is served.\n\nBread basket was amazing and full of cheesy delights!\n\nHave to talk about the double cheese alfredo pasta which did not disappoint either. Ideal for cheese lovers\n\nHad the pizza and the crust and base had a nice little crispy side to it filled with generous toppings.\n\nAll in all we literally cleaned up all the plates and staff was helpful in explaining the conceptual menu too.\n\nAmbience is dim lighted retro which is pretty good for conversations.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
This place doesn't understand the meaning of the word vegan. They are using the word just to pull crows I guess. I demand that they immediately change the term vegan in their menu if not their rating on all the online channels will drop soon."), ('Rated 1.0', "RATED\n  This restaurant doesn't know the definition of 'Vegan.' Vegan is not equal to vegetarian, and vegan means not having any animal product which means eggs, milk, butter, cheese, ghee, mayo etc. Your 'Vegan Omlette' and 'Vegan Burger' are not vegan. They are vegetarian, but not vegan. Separate 'vegan cheese,' 'vegan butter,' etc. are available. Until you get them, don't falsely advertise non vegan products as vegan and mislead people. People with lactose intolerance can literally have health problems thanks to your falsely advertised products. Scrap those products immediately."), ('Rated 1.0', 'RATED\n  I got a booking through Eazydiner, regretted that I took a prepaid deal (else I would have walked out after seeing the place!). And the staff had an issue in giving the offer. But after calling owner, it worked out. Problem is not that, the place stinks, food is below average! Water glass also stinks, coffee mug is not cleaned! Looks like bread has fungi! Anyway, I walked out without eating. They should clean the place and dishes first. The picture of bread and plate after I had my food is below.'), ('Rated 4.0', "RATED\n  I can't say much about the ambience as I have received home delivery for brunch. I have ordered English Breakfast which decent enough as per quantity and taste both. But the way they have packed with sweet note I just loved it."), ('Rated 1.0', 'RATED\n  Really bad taste and packaging. Burnt sausage.'), ('Rated 1.0', 'RATED\n  the food was very bad'), ('Rated 4.0', "RATED\n  A small cafe, tucked away in Kormangala 1st block, this place is actually a foodies dream.\nWe ordered a penne and cheese veggie pasta, grilled cheese sandwich, traditional waffles and a ginger iced tea.\nWhile pasta and sandwich are tasty enough, the waffles are probably one of the best that I have tasted.\nI didn't really liked the ginger iced tea, there was way too much ginger in it.\nThe ambience is cool and the staff polite and eager to help out with the choices.\nI suggest you all to give this cafe a visit! ?"), ('Rated 1.0', 'RATED\n  wedges were burnt'), ('Rated 2.0', 'RATED\n  Waiting time for food after ordering around 40mins, place hygiene is below average with a dirty floor at 10am in the morning, ordered typical english breakfast which came with burnt bread, burnt mushrooms and salt lumps in sunny side up eggs, no option for card payment'), ('Rated 4.0', "RATED\n  Dreams Cafe is situated just opposite to Cafe Thulp. The reason to mention this is that sometimes it's quite difficult to locate this Cafe and hence given the reference.\nIf you are an English breakfast lover than this is a must must visit place. The breakfast is available throughout the day...\nFood is really good..\nAmbience is not that great. The time taken to get the food delivered will take some time so you need to be patience..\nGreat place to enjoy the food... Go for it.."), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  Nothing above average tbh - coffee shake is trash - delivery was horrendous'), ('Rated 5.0', 'RATED\n  yummy foood'), ('Rated 1.0', 'RATED\n  Dreams cafe, you receive a rating of 1 for bad customer service and communication. I wouldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t like to order or eat in a place that doesnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t value customers and their valuable feedback.'), ('Rated 2.0', 'RATED\n  Ordered a waffle and burger at dreams cafe through swiggy and they delivered items that were missing from the product description. When I reached out to swiggy with proof (image) that the items were not in the product, swiggy had placed for a replacement. However, Dreams cafe reached out to me directly and mentioned that they will go under loss if they sent the entire product and if it was okay if they did not send anything at all. I had to mention that if thatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the case then only send the missing items for which they argued and very hesitantly sent the missing products. HereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a small tip for dreams:\n1. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t screw up your order in the first place\n2. No one wants your free food - everyone wants what they paid for and as mentioned on your menu\n3. DonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t be rude or cocky to your customers\n4. Improve on quality of service\n5. Get a new customer experience person - youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ll need it!'), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 1.0', 'RATED\n  ThereÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s literally one item on this menu that tastes well, but customer service, staff attitude and replacement policy could do with a major rehaul. Will never eat from here again!'), ('Rated 1.0', "RATED\n  the food wasn't good"), ('Rated 4.0', 'RATED\n  Best place for English Breakfast in Kormangala\n\nLoved there\n- French Toast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n\nMust visit if u have craving for English Break fast'), ('Rated 5.0', 'RATED\n  Great place. Very quiet for a late Sunday breakfast. The food was freshly prepared, tasty with just right portion size. I tried the Zomato and owner recommended English breakfast. Will definitely try other things on my next visit.\nHighly recommended.'), ('Rated 3.5', "RATED\n  It is a cozy cafe located in Koramangala 1st block which serves English breakfast. Their menu is completely of continental.\n\nBeing an English breakfast fanatic, I paid a visit to this cafe to taste few of their dishes. I have tasted French toast and Bacon cheesy fries. I received my order in a span of 10 min. The Ambience wasn't so great but it is okayish.\n\nFrench toast :\nThe bread is toasted perfectly to the golden perfection. Small slices of banana was layered on the top. The syrup isn't soo sweet but manageable. As the amount of cinnamon powder added in the toast is less, the taste is pleasant.\n\nBacon cheesy fries :\nIt is a combination of Bacon and French fries served with mayonnaise. The fries are perfectly fried and crispy. Bacon tastes good and fresh. I felt the mayonnaise was a bit salty. If you are a bacon fanatic, you can try it out.\n\nOverall, it is a good cafe where you can get a tasty English breakfast with decent pricing."), ('Rated 2.0', "RATED\n  This review is based on my only experience at Dreams Cafe. I'm not generalizing anything. My craving for English Breakfast took me to this place. Nothing can beat a good English breakfast on a lazy Sunday morning. But after reaching there, I felt it was not just the morning that was lazy. And finally, when the food was served, it wasn't warm. When we asked to heat up the food, our patience was again tested. Although, as we were leaving, the person in charge was polite enough to explain the situation how too many online orders created a mess, our breakfast mood had already gone haywire. It could be one of those bad days for them, but I'm not sure if I'm visiting them again."), ('Rated 4.0', 'RATED\n  Wanna have some good English Breakfast at affordable rates?\nThen dreamÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cafe is the place for you..\nThis cute place with cozy ambience serves a wide range of breakfast options.\nHere are the dishes we ordered..\n-English Breakfast\n-Porky English Breakfast\n- Sunny Side Breakfast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n- traditional waffle\n-snow white french toast\n\nI have ordered sunny side breakfast for myself, which has two toasted breads with two fried eggs, 2 sausages and bacon (perfectly cooked) along with that they served sauteed mushroom and vegetables with butter. The butter was a bit cold and hard though.\nTraditional waffle is an of average taste and the oreo nutty shake was quite god.\nTheir serving size is quite good and also worth for money.\nOverall, a good place to enjoy your breakfast with your loved ones.'), ('Rated 4.0', "RATED\n  Being ardent lover of south indian breakfast i do explore english breakfast once in a while. It was one such visit to try their english breakfast at this tiny cafe located in Koramangala first block.\n\nIt is an house converted to cafe by the passionate foodie himself. My choice for english breakfast is always sausages and eggs by default with some mashed potato.\n\nOut of multiple breakfast combo they offer i choose to go with london Bridge falling over without Bacon as i don't eat bacon, it was simple Scrambled egg  Mashed potato and Chicken Sausage along with Sauteed Vegetables. Except sauteed vegetables everything else was good. Vegetables were too indianized with lot of spice powders on it. Not my choice for breakfast at least.\n\nMy friend did try waffles which was good as they said. Tiny place and decent service makes this place distinct from other cafes.\n\neattravelcapture.wordpress.com"), ('Rated 2.0', "RATED\n  This review is based on my only experience at Dreams Cafe. I'm not generalizing anything. My craving for English Breakfast took me to this place. Nothing can beat a good English breakfast on a lazy Sunday morning. But after reaching there, I felt it was not just the morning that was lazy. And finally, when the food was served, it wasn't warm. When we asked to heat up the food, our patience was again tested. Although, as we were leaving, the person in charge was polite enough to explain the situation how too many online orders created a mess, our breakfast mood had already gone haywire. It could be one of those bad days for them, but I'm not sure if I'm visiting them again."), ('Rated 4.0', 'RATED\n  Wanna have some good English Breakfast at affordable rates?\nThen dreamÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cafe is the place for you..\nThis cute place with cozy ambience serves a wide range of breakfast options.\nHere are the dishes we ordered..\n-English Breakfast\n-Porky English Breakfast\n- Sunny Side Breakfast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n- traditional waffle\n-snow white french toast\n\nI have ordered sunny side breakfast for myself, which has two toasted breads with two fried eggs, 2 sausages and bacon (perfectly cooked) along with that they served sauteed mushroom and vegetables with butter. The butter was a bit cold and hard though.\nTraditional waffle is an of average taste and the oreo nutty shake was quite god.\nTheir serving size is quite good and also worth for money.\nOverall, a good place to enjoy your breakfast with your loved ones.'), ('Rated 4.0', "RATED\n  Being ardent lover of south indian breakfast i do explore english breakfast once in a while. It was one such visit to try their english breakfast at this tiny cafe located in Koramangala first block.\n\nIt is an house converted to cafe by the passionate foodie himself. My choice for english breakfast is always sausages and eggs by default with some mashed potato.\n\nOut of multiple breakfast combo they offer i choose to go with london Bridge falling over without Bacon as i don't eat bacon, it was simple Scrambled egg  Mashed potato and Chicken Sausage along with Sauteed Vegetables. Except sauteed vegetables everything else was good. Vegetables were too indianized with lot of spice powders on it. Not my choice for breakfast at least.\n\nMy friend did try waffles which was good as they said. Tiny place and decent service makes this place distinct from other cafes.\n\neattravelcapture.wordpress.com"), ('Rated 2.0', "RATED\n  This review is based on my only experience at Dreams Cafe. I'm not generalizing anything. My craving for English Breakfast took me to this place. Nothing can beat a good English breakfast on a lazy Sunday morning. But after reaching there, I felt it was not just the morning that was lazy. And finally, when the food was served, it wasn't warm. When we asked to heat up the food, our patience was again tested. Although, as we were leaving, the person in charge was polite enough to explain the situation how too many online orders created a mess, our breakfast mood had already gone haywire. It could be one of those bad days for them, but I'm not sure if I'm visiting them again."), ('Rated 4.0', 'RATED\n  Wanna have some good English Breakfast at affordable rates?\nThen dreamÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cafe is the place for you..\nThis cute place with cozy ambience serves a wide range of breakfast options.\nHere are the dishes we ordered..\n-English Breakfast\n-Porky English Breakfast\n- Sunny Side Breakfast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n- traditional waffle\n-snow white french toast\n\nI have ordered sunny side breakfast for myself, which has two toasted breads with two fried eggs, 2 sausages and bacon (perfectly cooked) along with that they served sauteed mushroom and vegetables with butter. The butter was a bit cold and hard though.\nTraditional waffle is an of average taste and the oreo nutty shake was quite god.\nTheir serving size is quite good and also worth for money.\nOverall, a good place to enjoy your breakfast with your loved ones.'), ('Rated 4.0', "RATED\n  Being ardent lover of south indian breakfast i do explore english breakfast once in a while. It was one such visit to try their english breakfast at this tiny cafe located in Koramangala first block.\n\nIt is an house converted to cafe by the passionate foodie himself. My choice for english breakfast is always sausages and eggs by default with some mashed potato.\n\nOut of multiple breakfast combo they offer i choose to go with london Bridge falling over without Bacon as i don't eat bacon, it was simple Scrambled egg  Mashed potato and Chicken Sausage along with Sauteed Vegetables. Except sauteed vegetables everything else was good. Vegetables were too indianized with lot of spice powders on it. Not my choice for breakfast at least.\n\nMy friend did try waffles which was good as they said. Tiny place and decent service makes this place distinct from other cafes.\n\neattravelcapture.wordpress.com"), ('Rated 2.0', "RATED\n  This review is based on my only experience at Dreams Cafe. I'm not generalizing anything. My craving for English Breakfast took me to this place. Nothing can beat a good English breakfast on a lazy Sunday morning. But after reaching there, I felt it was not just the morning that was lazy. And finally, when the food was served, it wasn't warm. When we asked to heat up the food, our patience was again tested. Although, as we were leaving, the person in charge was polite enough to explain the situation how too many online orders created a mess, our breakfast mood had already gone haywire. It could be one of those bad days for them, but I'm not sure if I'm visiting them again."), ('Rated 4.0', 'RATED\n  Wanna have some good English Breakfast at affordable rates?\nThen dreamÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cafe is the place for you..\nThis cute place with cozy ambience serves a wide range of breakfast options.\nHere are the dishes we ordered..\n-English Breakfast\n-Porky English Breakfast\n- Sunny Side Breakfast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n- traditional waffle\n-snow white french toast\n\nI have ordered sunny side breakfast for myself, which has two toasted breads with two fried eggs, 2 sausages and bacon (perfectly cooked) along with that they served sauteed mushroom and vegetables with butter. The butter was a bit cold and hard though.\nTraditional waffle is an of average taste and the oreo nutty shake was quite god.\nTheir serving size is quite good and also worth for money.\nOverall, a good place to enjoy your breakfast with your loved ones.'), ('Rated 4.0', "RATED\n  Being ardent lover of south indian breakfast i do explore english breakfast once in a while. It was one such visit to try their english breakfast at this tiny cafe located in Koramangala first block.\n\nIt is an house converted to cafe by the passionate foodie himself. My choice for english breakfast is always sausages and eggs by default with some mashed potato.\n\nOut of multiple breakfast combo they offer i choose to go with london Bridge falling over without Bacon as i don't eat bacon, it was simple Scrambled egg  Mashed potato and Chicken Sausage along with Sauteed Vegetables. Except sauteed vegetables everything else was good. Vegetables were too indianized with lot of spice powders on it. Not my choice for breakfast at least.\n\nMy friend did try waffles which was good as they said. Tiny place and decent service makes this place distinct from other cafes.\n\neattravelcapture.wordpress.com"), ('Rated 2.0', "RATED\n  This review is based on my only experience at Dreams Cafe. I'm not generalizing anything. My craving for English Breakfast took me to this place. Nothing can beat a good English breakfast on a lazy Sunday morning. But after reaching there, I felt it was not just the morning that was lazy. And finally, when the food was served, it wasn't warm. When we asked to heat up the food, our patience was again tested. Although, as we were leaving, the person in charge was polite enough to explain the situation how too many online orders created a mess, our breakfast mood had already gone haywire. It could be one of those bad days for them, but I'm not sure if I'm visiting them again."), ('Rated 4.0', 'RATED\n  Wanna have some good English Breakfast at affordable rates?\nThen dreamÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s cafe is the place for you..\nThis cute place with cozy ambience serves a wide range of breakfast options.\nHere are the dishes we ordered..\n-English Breakfast\n-Porky English Breakfast\n- Sunny Side Breakfast\n- Oreo nutty shake\n-Hazelnut coffee\n-black coffee\n- traditional waffle\n-snow white french toast\n\nI have ordered sunny side breakfast for myself, which has two toasted breads with two fried eggs, 2 sausages and bacon (perfectly cooked) along with that they served sauteed mushroom and vegetables with butter. The butter was a bit cold and hard though.\nTraditional waffle is an of average taste and the oreo nutty shake was quite god.\nTheir serving size is quite good and also worth for money.\nOverall, a good place to enjoy your breakfast with your loved ones.'), ('Rated 4.0', "RATED\n  Being ardent lover of south indian breakfast i do explore english breakfast once in a while. It was one such visit to try their english breakfast at this tiny cafe located in Koramangala first block.\n\nIt is an house converted to cafe by the passionate foodie himself. My choice for english breakfast is always sausages and eggs by default with some mashed potato.\n\nOut of multiple breakfast combo they offer i choose to go with london Bridge falling over without Bacon as i don't eat bacon, it was simple Scrambled egg  Mashed potato and Chicken Sausage along with Sauteed Vegetables. Except sauteed vegetables everything else was good. Vegetables were too indianized with lot of spice powders on it. Not my choice for breakfast at least.\n\nMy friend did try waffles which was good as they said. Tiny place and decent service makes this place distinct from other cafes.\n\neattravelcapture.wordpress.com"), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  liked the food Ambience is superb and services is really heart winning. I liked the owners greet towards customers\nprice is reasonable and like to visit more and more'), ('Rated 3.0', 'RATED\n  Very dark and gloomy cafe. I went in the morning for breakfast only to find this place stinky with no sunlight. None the less, they have a lot of options for breakfast and the food is good for the price.'), ('Rated 3.0', 'RATED\n  Order the veggie breakfast meal. The baked beans , toast, vegetables and hash browns were good but I got tandoori potatoes instead of sautÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©ed mushrooms and the mashed potatoes was average.'), ('Rated 3.0', "RATED\n  Have been to this place twice. First time I went they were closed due to dassera and the 2nd time I went we were the only customers on a Sunday morning. Heard a lot about there English breakfast and omelette. Both the items were yummy and the service was quick. When we ordered pancakes and waffles. I was utterly disappointed. The pancakes was fluffy But dry and the waffles looked cute but dry again. The sauce for pancakes was some chocolate sauce when we asked for maple syrup they didn't have it. And the sauce for the waffles was insufficient. Its a good place but needs improvement. Ambience is nice and cozy and colourful. The lighting make whatever we eat maroon."), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 5.0', 'RATED\n  The place is very calm will full of positive vibes , away from the noisy crowd. I ordered full English breakfast and a traditional waffle. The service was quick and staff were very inviting. Food was fresh and delicious. Just felt like home and thoroughly enjoyed my breakfast. Would love to visit this place again.... Thanks'), ('Rated 4.5', 'RATED\n  Silent, cozy place for couples, also for family and friends. Food is awesome as usual, as I have been there for several times, never been disappointed with the quality and taste ?. The stand up comedy arranged at the restaurant was like cherry on the cake, Thoroughly enjoyed the evening. Surely Recommend all to visit.'), ('Rated 4.5', 'RATED\n  I have visited this place 2-3 times. This place is soo quite means you can feel soo positive vibes here, soo cleanliness and very hygienic. The staff was nice and whenever you call them they have a smile on there face and they will make you feel special. They have novels section you can read novels while seating there. Interior was soo nice.\nFood of dreams cafe was good. I have tried double vegan burger, vegan favourite omelette and a black coffee. The burger was soo big, juicy and crispy. The sausage make it perfect. Omelette was good. You have to try it.\nOtherwise this place is wow, you must have to visit there?'), ('Rated 4.0', 'RATED\n  Food is great and friendly staff .. we ordered pork breakfast which was good with pepper sausage and classic waffles, chocolate pancakes and hot chocolate, hot chocolate was not that good but other than that it was great.'), ('Rated 4.5', 'RATED\n  Visited with wife on 6th Jan. Tried veg double burger, fries and coffee which were quite filling and good. Seems recently launched place with new menu items.  Has very good options for non veg and English breakfast. This seems to be their speciality.\n Place is quite so can spend long time without getting disturbed. Ambience is good with changing light color on mood.\nOwner was there and was friendly.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I ordered Pork lovers breakfast which I loved completely. The sausages wer yummy,the bacon had a balanced smokey flavour. I loved the Sauteed vegetables cooked to perfection which I seldom find in other breakfast cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.\nI request the management to hire some more service guys to serve the customers better, as wen I was ter at the restaurant at around 9:45 am ter was only one waiter running around between 7-8 tables. I waited for my order for around 20 mins and it was worth waiting for . All in all food was good. Keep it up'), ('Rated 3.0', "RATED\n  With the new management have come doubled prices, and no improvement in service (which is still slow) or the quality of food.\nUsed to come here because it was cheaper than other places while still providing good food, but that has changed and now you don't get the value for money.\nI used to recommend the place to others, but not anymore. That ship has sailed."), ('Rated 2.0', "RATED\n  For some reason, the management has changed three times since I've been coming to here.\nAnd this time, it's taken the turn for the unusual. There is a new poster board outside and the menu is now prettier. And this has resulted in the prices shooting up? The waiters are confused about the things on the menu. The costs does not match the food quality/quantity.\nMoreover, this is a breakfast place? The last management made chai from scratch. Now I'm paying 70 bucks for a Tetley dip tea.\n2.0 rating for the bacon - their saving grace."), ('Rated 5.0', 'RATED\n  The cafe is one of the most serene places around Koramangala. Highly recommended for those who love to sip their coffee with peace. Best part is the friendly staff and assorted menu.'), ('Rated 3.0', 'RATED\n  My friends and I really liked the food. The portions are good, and taste is great. We had the English breakfast, and two other items. Also ordered coffee. The bad rating is for the poor service. A place with great potential let down by the lethargic attitude of the host. The service was taking quite some time and when we decided to at least have the beverages brought first, we were told that the beverages will only be served after the food. No explanation no apologies whatsoever. I was peeved and was of the mind to leave but we had already waited for quite some time so decided to just stay till the food arrived. Word to the host, either hire more staff or be more courteous to the guests.'), ('Rated 4.5', 'RATED\n  I heard about Dreams Cafe from a friend. Finally decided to visit it today. I ordered their typical English breakfast with tea. The sausages were nice and hot, and the egg was cooked just in the right way. Most importantly loved the warmth with which the staff greeted us. It is indeed one of the best cafes in town for English breakfast.'), ('Rated 1.0', 'RATED\n  Its sad to see such a nice place ,having no interest what so ever to keep the place neat and customer friendly. The staff cant even communicate with the guest in any way.\nVery Disappointed, had to find the server in an empty restaurant as i was confused which was the seating area. Not a busy restaurant still the glass served water to me was filthy with finger marks.\nOrdered Jumbo Chicken Burger with Extra Fries and Pepsi. Didnt know what Jumbo it was all about as the patty was small and nothing jumbo bout it. The Coke was served to me after the burger was over. Over that the mosquitoes bit me like crazy.\nHad to wait for more than 10 min just to find someone to ask for my bill. Again waited for like 10 min to get my change back. Mosquitoes killed me and left me with bumps all over my legs and hands.\n\nSuch a potential area to work on and the owners needs to pull up their socks to make this place more popular.'), ('Rated 5.0', 'RATED\n  Dream cafe is amazing, food is very delicious,service also too good. homely environment, suitable for youngster as well as family. I would be like to visit again in this cafe.Hitesh Hirawat Jain'), ('Rated 5.0', 'RATED\n  Visited this cafe with my friends. Very nice ambience, delicious food and satisfactory services......would surely recommend to my friends and families.'), ('Rated 5.0', 'RATED\n  Nice place to visit.. Peacefully Homely environment... Awesome food... Nice ambience... Staff was very polite.. Service quality was good... I ll definitely visit this place again soon... :)'), ('Rated 4.5', 'RATED\n  I heard about Dreams Cafe from a friend. Finally decided to visit it today. I ordered their typical English breakfast with tea. The sausages were nice and hot, and the egg was cooked just in the right way. Most importantly loved the warmth with which the staff greeted us. It is indeed one of the best cafes in town for English breakfast.'), ('Rated 1.0', 'RATED\n  Its sad to see such a nice place ,having no interest what so ever to keep the place neat and customer friendly. The staff cant even communicate with the guest in any way.\nVery Disappointed, had to find the server in an empty restaurant as i was confused which was the seating area. Not a busy restaurant still the glass served water to me was filthy with finger marks.\nOrdered Jumbo Chicken Burger with Extra Fries and Pepsi. Didnt know what Jumbo it was all about as the patty was small and nothing jumbo bout it. The Coke was served to me after the burger was over. Over that the mosquitoes bit me like crazy.\nHad to wait for more than 10 min just to find someone to ask for my bill. Again waited for like 10 min to get my change back. Mosquitoes killed me and left me with bumps all over my legs and hands.\n\nSuch a potential area to work on and the owners needs to pull up their socks to make this place more popular.'), ('Rated 5.0', 'RATED\n  Dream cafe is amazing, food is very delicious,service also too good. homely environment, suitable for youngster as well as family. I would be like to visit again in this cafe.Hitesh Hirawat Jain'), ('Rated 5.0', 'RATED\n  Visited this cafe with my friends. Very nice ambience, delicious food and satisfactory services......would surely recommend to my friends and families.'), ('Rated 5.0', 'RATED\n  Nice place to visit.. Peacefully Homely environment... Awesome food... Nice ambience... Staff was very polite.. Service quality was good... I ll definitely visit this place again soon... :)'), ('Rated 5.0', 'RATED\n  Food is very yummy enjoyed a lot here very specious restaurant probably the best in this locality in terms of quality and also economic tooo thanks'), ('Rated 5.0', 'RATED\n  We visited this place with family...great customer service...staff is so friendly and cooperative...ambience is simple but attractive...English breakfast ..nice concept...delicious food...must visit..?'), ('Rated 5.0', 'RATED\n  Food is very yummy and tasty. Serving facilities are also very good. Very nice and spacious restaurant. Healthy place to visit with family...'), ('Rated 4.5', 'RATED\n  Amazing food and very nice ambience. Great place to visit and have healthy breakfast, lunch and dinner. Serving food and services are best. All is well.'), ('Rated 5.0', 'RATED\n  great prices and amazing customer services...great spot for casual gathering as well...delicious food...flavors have remarkable depth..just loved the ambiance......would like to visit this place again....'), ('Rated 5.0', 'RATED\n  Food is very yummy enjoyed a lot here very specious restaurant probably the best in this locality in terms of quality and also economic tooo thanks'), ('Rated 5.0', 'RATED\n  We visited this place with family...great customer service...staff is so friendly and cooperative...ambience is simple but attractive...English breakfast ..nice concept...delicious food...must visit..?'), ('Rated 5.0', 'RATED\n  Food is very yummy and tasty. Serving facilities are also very good. Very nice and spacious restaurant. Healthy place to visit with family...'), ('Rated 4.5', 'RATED\n  Amazing food and very nice ambience. Great place to visit and have healthy breakfast, lunch and dinner. Serving food and services are best. All is well.'), ('Rated 5.0', 'RATED\n  great prices and amazing customer services...great spot for casual gathering as well...delicious food...flavors have remarkable depth..just loved the ambiance......would like to visit this place again....'), ('Rated 5.0', 'RATED\n  ?A restaurant should be about more than the food you eat..?dreams cafe is a perfect example of a restaurant with soul.?\nBest English Breakfast? amazing experience.. feels like second home.. must visit for yammi delicious food.. heaven for food lovers?\nI loved this experience.. ?'), ('Rated 4.5', 'RATED\n  First time having breakfast here.service was extremely plesant.prices are resonable .one of the better choices in this area . Will make this a regular stop! Highley recommended to all visit once.@mukeshthakur'), ('Rated 5.0', 'RATED\n  Delicious food, exotic and grand menu filled with delicacies. Loved the atmosphere as well, keeps bringing you back for another perfect evening or a quick brunch. A perfect place for family or business dining. 10/10 would recommend to all people.'), ('Rated 4.5', 'RATED\n  Since I have been to Bangalore, I have been planning to visit this place and finally I did...loved the atmosphere... Good quality food... Simple decor...only, they should start accepting cards...else loved it...???'), ('Rated 5.0', 'RATED\n  it was my first visit to the cafe and it was quite a wonderful experience...the service was also good..very comfortable place to visit...my next visit will be my family.. :-) I strongly recommend to all visit once at dreams cafe.@shobhit@simmy'), ('Rated 5.0', 'RATED\n  ?A restaurant should be about more than the food you eat..?dreams cafe is a perfect example of a restaurant with soul.?\nBest English Breakfast? amazing experience.. feels like second home.. must visit for yammi delicious food.. heaven for food lovers?\nI loved this experience.. ?'), ('Rated 4.5', 'RATED\n  First time having breakfast here.service was extremely plesant.prices are resonable .one of the better choices in this area . Will make this a regular stop! Highley recommended to all visit once.@mukeshthakur'), ('Rated 5.0', 'RATED\n  Delicious food, exotic and grand menu filled with delicacies. Loved the atmosphere as well, keeps bringing you back for another perfect evening or a quick brunch. A perfect place for family or business dining. 10/10 would recommend to all people.'), ('Rated 4.5', 'RATED\n  Since I have been to Bangalore, I have been planning to visit this place and finally I did...loved the atmosphere... Good quality food... Simple decor...only, they should start accepting cards...else loved it...???'), ('Rated 5.0', 'RATED\n  it was my first visit to the cafe and it was quite a wonderful experience...the service was also good..very comfortable place to visit...my next visit will be my family.. :-) I strongly recommend to all visit once at dreams cafe.@shobhit@simmy'), ('Rated 5.0', 'RATED\n  ?A restaurant should be about more than the food you eat..?dreams cafe is a perfect example of a restaurant with soul.?\nBest English Breakfast? amazing experience.. feels like second home.. must visit for yammi delicious food.. heaven for food lovers?\nI loved this experience.. ?'), ('Rated 4.5', 'RATED\n  First time having breakfast here.service was extremely plesant.prices are resonable .one of the better choices in this area . Will make this a regular stop! Highley recommended to all visit once.@mukeshthakur'), ('Rated 5.0', 'RATED\n  Delicious food, exotic and grand menu filled with delicacies. Loved the atmosphere as well, keeps bringing you back for another perfect evening or a quick brunch. A perfect place for family or business dining. 10/10 would recommend to all people.'), ('Rated 4.5', 'RATED\n  Since I have been to Bangalore, I have been planning to visit this place and finally I did...loved the atmosphere... Good quality food... Simple decor...only, they should start accepting cards...else loved it...???'), ('Rated 5.0', 'RATED\n  it was my first visit to the cafe and it was quite a wonderful experience...the service was also good..very comfortable place to visit...my next visit will be my family.. :-) I strongly recommend to all visit once at dreams cafe.@shobhit@simmy'), ('Rated 4.5', 'RATED\n  Decent ambience , great food and services... A place worth spending leisure time with friends giving homely environment... highly recommendable to spend a peace time.... ?'), ('Rated 5.0', 'RATED\n  Awesome place with good ambience and great food ..........had a nice time with friends on a Sunday Brunch.  Must visit place!  Recommend English Breakfast.. Yummy....'), ('Rated 4.5', 'RATED\n  Great food with a good overall ambience....\nnice place to visit with friends and to spend some good quality time along with the awesome food.....\na must place to visit'), ('Rated 5.0', 'RATED\n  I am fond of food... so i hv found dis cafe.. and its actually a dream cafe for the people who love food..\nFood is very tasty, i love coffee..\nGoing to visit this place soon again .. in couple of days..'), ('Rated 5.0', 'RATED\n  Awesome place for a breakfast with family............Went with frns nd enjoyed everything there.. food, ambience, service...... just loving it.........'), ('Rated 4.5', 'RATED\n  Decent ambience , great food and services... A place worth spending leisure time with friends giving homely environment... highly recommendable to spend a peace time.... ?'), ('Rated 5.0', 'RATED\n  Awesome place with good ambience and great food ..........had a nice time with friends on a Sunday Brunch.  Must visit place!  Recommend English Breakfast.. Yummy....'), ('Rated 4.5', 'RATED\n  Great food with a good overall ambience....\nnice place to visit with friends and to spend some good quality time along with the awesome food.....\na must place to visit'), ('Rated 5.0', 'RATED\n  I am fond of food... so i hv found dis cafe.. and its actually a dream cafe for the people who love food..\nFood is very tasty, i love coffee..\nGoing to visit this place soon again .. in couple of days..'), ('Rated 5.0', 'RATED\n  Awesome place for a breakfast with family............Went with frns nd enjoyed everything there.. food, ambience, service...... just loving it.........'), ('Rated 4.5', 'RATED\n  Decent ambience , great food and services... A place worth spending leisure time with friends giving homely environment... highly recommendable to spend a peace time.... ?'), ('Rated 5.0', 'RATED\n  Awesome place with good ambience and great food ..........had a nice time with friends on a Sunday Brunch.  Must visit place!  Recommend English Breakfast.. Yummy....'), ('Rated 4.5', 'RATED\n  Great food with a good overall ambience....\nnice place to visit with friends and to spend some good quality time along with the awesome food.....\na must place to visit'), ('Rated 5.0', 'RATED\n  I am fond of food... so i hv found dis cafe.. and its actually a dream cafe for the people who love food..\nFood is very tasty, i love coffee..\nGoing to visit this place soon again .. in couple of days..'), ('Rated 5.0', 'RATED\n  Awesome place for a breakfast with family............Went with frns nd enjoyed everything there.. food, ambience, service...... just loving it.........'), ('Rated 5.0', 'RATED\n  Happen to visit this Homely cafe in koramangala while returning from official visit. Had English breakfast and Chocolate shake and to my surprise, both were soo soo good.\nAfter having meal, I sat there working on lapi for around 45 minutes and nobody disturbed me. It was a cosy and warm place wherein you can relax and even play carrom and other board games. Interiors are simple and elegant. Manager and staff are very friendly.\nA must place to visit with your dear ones!'), ('Rated 4.5', 'RATED\n  Nice place and awesome food , staff was very friendly and cooperative. Wonderful place for meetings and get togethers. Would like to again with friends.'), ('Rated 5.0', 'RATED\n  Awesome place to go with family for english breakfast..great variety..amazing taste, definitely visit again and again..specially liked the sandwiches, ambience is so good, good place to relax and spend time..'), ('Rated 4.5', 'RATED\n  It has good variety of food and the service is also good . The place is happening and the interior is also good . The staff is friendly enough and talks properly with the customers. It is really value for money.'), ('Rated 5.0', 'RATED\n  Very tasty , Good quality food with nice ambience and good staff. Best english breakfast i ever had. Like to come again and again. We had a great time there'), ('Rated 5.0', 'RATED\n  Happen to visit this Homely cafe in koramangala while returning from official visit. Had English breakfast and Chocolate shake and to my surprise, both were soo soo good.\nAfter having meal, I sat there working on lapi for around 45 minutes and nobody disturbed me. It was a cosy and warm place wherein you can relax and even play carrom and other board games. Interiors are simple and elegant. Manager and staff are very friendly.\nA must place to visit with your dear ones!'), ('Rated 4.5', 'RATED\n  Nice place and awesome food , staff was very friendly and cooperative. Wonderful place for meetings and get togethers. Would like to again with friends.'), ('Rated 5.0', 'RATED\n  Awesome place to go with family for english breakfast..great variety..amazing taste, definitely visit again and again..specially liked the sandwiches, ambience is so good, good place to relax and spend time..'), ('Rated 4.5', 'RATED\n  It has good variety of food and the service is also good . The place is happening and the interior is also good . The staff is friendly enough and talks properly with the customers. It is really value for money.'), ('Rated 5.0', 'RATED\n  Very tasty , Good quality food with nice ambience and good staff. Best english breakfast i ever had. Like to come again and again. We had a great time there'), ('Rated 5.0', 'RATED\n  Felt like being home, the sandwich and coffee reminded me of what my mother use to make! Love the food and ambience, and board games reminded me of my childhood.'), ('Rated 5.0', 'RATED\n  This was my second visit at dreams cafe and again I received the great hospitality and amazing tasty food... would like to know how you guys make such a tasty shakes...\n\nHope to see you soon :)'), ('Rated 5.0', 'RATED\n  Amazing start to this weekend with such delicious food . Great ambience and the best services they provide is very rare to see. All the products were fresh and the dishes had the warmth of home-made food. The chefs takes great care in selecting the best quality ingredients. The restaurant also caters for all sorts of tastes.I had a pleasant experience with food of the most exquisite flavours.\nMust visit place .\nHope to cm soon'), ('Rated 4.5', 'RATED\n  Really a very good cafe ...nice cafe and an awesome place to hangout !!\nLiked the shakes and burgers ..yummmm food\nLoved the place and hope to come here again soon\nAndy P Isha Bodkha Harsh Agarwal'), ('Rated 5.0', 'RATED\n  I happened to visit this place today with a bunch of friends.. Awesome place.. Nice ambience ... Delicious food... Special variety of burgers.. Great service quality...must visit...'), ('Rated 5.0', 'RATED\n  Felt like being home, the sandwich and coffee reminded me of what my mother use to make! Love the food and ambience, and board games reminded me of my childhood.'), ('Rated 5.0', 'RATED\n  This was my second visit at dreams cafe and again I received the great hospitality and amazing tasty food... would like to know how you guys make such a tasty shakes...\n\nHope to see you soon :)'), ('Rated 5.0', 'RATED\n  Amazing start to this weekend with such delicious food . Great ambience and the best services they provide is very rare to see. All the products were fresh and the dishes had the warmth of home-made food. The chefs takes great care in selecting the best quality ingredients. The restaurant also caters for all sorts of tastes.I had a pleasant experience with food of the most exquisite flavours.\nMust visit place .\nHope to cm soon'), ('Rated 4.5', 'RATED\n  Really a very good cafe ...nice cafe and an awesome place to hangout !!\nLiked the shakes and burgers ..yummmm food\nLoved the place and hope to come here again soon\nAndy P Isha Bodkha Harsh Agarwal'), ('Rated 5.0', 'RATED\n  I happened to visit this place today with a bunch of friends.. Awesome place.. Nice ambience ... Delicious food... Special variety of burgers.. Great service quality...must visit...'), ('Rated 5.0', 'RATED\n  Felt like being home, the sandwich and coffee reminded me of what my mother use to make! Love the food and ambience, and board games reminded me of my childhood.'), ('Rated 5.0', 'RATED\n  This was my second visit at dreams cafe and again I received the great hospitality and amazing tasty food... would like to know how you guys make such a tasty shakes...\n\nHope to see you soon :)'), ('Rated 5.0', 'RATED\n  Amazing start to this weekend with such delicious food . Great ambience and the best services they provide is very rare to see. All the products were fresh and the dishes had the warmth of home-made food. The chefs takes great care in selecting the best quality ingredients. The restaurant also caters for all sorts of tastes.I had a pleasant experience with food of the most exquisite flavours.\nMust visit place .\nHope to cm soon'), ('Rated 4.5', 'RATED\n  Really a very good cafe ...nice cafe and an awesome place to hangout !!\nLiked the shakes and burgers ..yummmm food\nLoved the place and hope to come here again soon\nAndy P Isha Bodkha Harsh Agarwal'), ('Rated 5.0', 'RATED\n  I happened to visit this place today with a bunch of friends.. Awesome place.. Nice ambience ... Delicious food... Special variety of burgers.. Great service quality...must visit...'), ('Rated 5.0', 'RATED\n  Dreams cafe which your loved ones truely likes, as the atmosphere was fine and changeable if you were in party mode or the romantic one, food was very good and you can start from morning till late night recepies, well behaved staff welcomes warm heartedly, good place to celebrate every occasion either being bachelor or with family\nVisit once u really liked it\nAll the best'), ('Rated 5.0', 'RATED\n  Enjoyed VERY NICE FOOD especially the grilled sandwich.... staff nd service was very good....I also liked the interiors of the cafe nd its ambience.'), ('Rated 4.5', 'RATED\n  This place is really awesome. I love the food and ambience. This is one the best cafe in the city . Staff is very polite generous and proactive.'), ('Rated 4.5', 'RATED\n  We found this place with a pleasant ambience and delicious food. The staff was very warm and courteous with excellent service...We enjoyed a lot..A must visit place!! ???'), ('Rated 5.0', 'RATED\n  Food was delicious! Must try and visit this place. This place serves authentic English breakfast and other delicacies also which are worth a try.. if are nearby.. must visit!Saloni Maheshwari'), ('Rated 5.0', 'RATED\n  Dreams cafe which your loved ones truely likes, as the atmosphere was fine and changeable if you were in party mode or the romantic one, food was very good and you can start from morning till late night recepies, well behaved staff welcomes warm heartedly, good place to celebrate every occasion either being bachelor or with family\nVisit once u really liked it\nAll the best'), ('Rated 5.0', 'RATED\n  Enjoyed VERY NICE FOOD especially the grilled sandwich.... staff nd service was very good....I also liked the interiors of the cafe nd its ambience.'), ('Rated 4.5', 'RATED\n  This place is really awesome. I love the food and ambience. This is one the best cafe in the city . Staff is very polite generous and proactive.'), ('Rated 4.5', 'RATED\n  We found this place with a pleasant ambience and delicious food. The staff was very warm and courteous with excellent service...We enjoyed a lot..A must visit place!! ???'), ('Rated 5.0', 'RATED\n  Food was delicious! Must try and visit this place. This place serves authentic English breakfast and other delicacies also which are worth a try.. if are nearby.. must visit!Saloni Maheshwari'), ('Rated 5.0', 'RATED\n  Dreams cafe which your loved ones truely likes, as the atmosphere was fine and changeable if you were in party mode or the romantic one, food was very good and you can start from morning till late night recepies, well behaved staff welcomes warm heartedly, good place to celebrate every occasion either being bachelor or with family\nVisit once u really liked it\nAll the best'), ('Rated 5.0', 'RATED\n  Enjoyed VERY NICE FOOD especially the grilled sandwich.... staff nd service was very good....I also liked the interiors of the cafe nd its ambience.'), ('Rated 4.5', 'RATED\n  This place is really awesome. I love the food and ambience. This is one the best cafe in the city . Staff is very polite generous and proactive.'), ('Rated 4.5', 'RATED\n  We found this place with a pleasant ambience and delicious food. The staff was very warm and courteous with excellent service...We enjoyed a lot..A must visit place!! ???'), ('Rated 5.0', 'RATED\n  Food was delicious! Must try and visit this place. This place serves authentic English breakfast and other delicacies also which are worth a try.. if are nearby.. must visit!Saloni Maheshwari'), ('Rated 5.0', 'RATED\n  Dreams cafe which your loved ones truely likes, as the atmosphere was fine and changeable if you were in party mode or the romantic one, food was very good and you can start from morning till late night recepies, well behaved staff welcomes warm heartedly, good place to celebrate every occasion either being bachelor or with family\nVisit once u really liked it\nAll the best'), ('Rated 5.0', 'RATED\n  Enjoyed VERY NICE FOOD especially the grilled sandwich.... staff nd service was very good....I also liked the interiors of the cafe nd its ambience.'), ('Rated 4.5', 'RATED\n  This place is really awesome. I love the food and ambience. This is one the best cafe in the city . Staff is very polite generous and proactive.'), ('Rated 4.5', 'RATED\n  We found this place with a pleasant ambience and delicious food. The staff was very warm and courteous with excellent service...We enjoyed a lot..A must visit place!! ???'), ('Rated 5.0', 'RATED\n  Food was delicious! Must try and visit this place. This place serves authentic English breakfast and other delicacies also which are worth a try.. if are nearby.. must visit!Saloni Maheshwari'), ('Rated 5.0', 'RATED\n  Dreams cafe which your loved ones truely likes, as the atmosphere was fine and changeable if you were in party mode or the romantic one, food was very good and you can start from morning till late night recepies, well behaved staff welcomes warm heartedly, good place to celebrate every occasion either being bachelor or with family\nVisit once u really liked it\nAll the best'), ('Rated 5.0', 'RATED\n  Enjoyed VERY NICE FOOD especially the grilled sandwich.... staff nd service was very good....I also liked the interiors of the cafe nd its ambience.'), ('Rated 4.5', 'RATED\n  This place is really awesome. I love the food and ambience. This is one the best cafe in the city . Staff is very polite generous and proactive.'), ('Rated 4.5', 'RATED\n  We found this place with a pleasant ambience and delicious food. The staff was very warm and courteous with excellent service...We enjoyed a lot..A must visit place!! ???'), ('Rated 5.0', 'RATED\n  Food was delicious! Must try and visit this place. This place serves authentic English breakfast and other delicacies also which are worth a try.. if are nearby.. must visit!Saloni Maheshwari'), ('Rated 5.0', 'RATED\n  Dreams cafe which your loved ones truely likes, as the atmosphere was fine and changeable if you were in party mode or the romantic one, food was very good and you can start from morning till late night recepies, well behaved staff welcomes warm heartedly, good place to celebrate every occasion either being bachelor or with family\nVisit once u really liked it\nAll the best'), ('Rated 5.0', 'RATED\n  Enjoyed VERY NICE FOOD especially the grilled sandwich.... staff nd service was very good....I also liked the interiors of the cafe nd its ambience.'), ('Rated 4.5', 'RATED\n  This place is really awesome. I love the food and ambience. This is one the best cafe in the city . Staff is very polite generous and proactive.'), ('Rated 4.5', 'RATED\n  We found this place with a pleasant ambience and delicious food. The staff was very warm and courteous with excellent service...We enjoyed a lot..A must visit place!! ???'), ('Rated 5.0', 'RATED\n  Food was delicious! Must try and visit this place. This place serves authentic English breakfast and other delicacies also which are worth a try.. if are nearby.. must visit!Saloni Maheshwari'), ('Rated 4.0', 'RATED\n  Nice food and jovial owner. Apt for ppl who want to dine in silence with books. Sandwiches and veg omlete are particularly good. Worth a try.'), ('Rated 5.0', 'RATED\n  Wanna cup of coffee, a burger and chill out on Sunday morning, visit Dreams Cafe,\nKoramangala. Order food, Pick up a magazine or start a chess or carom game and chill. Having homely atmosphere this place is a must suggested place for hangout. Had a nice burger with sausage and french fries, couple of weeks back. Soon to visit again.'), ('Rated 5.0', 'RATED\n  Nice place to hangout and tasty food, good ambience, good people, I would like to recommend all who are reading this review to go there once and experience the experience.'), ('Rated 5.0', 'RATED\n  Foods are very very good here and you can get every type of english foods here. Services and all are very good. This is the one place where you can get everything good.'), ('Rated 4.5', 'RATED\n  Dreams Cafe is the place where you can spend your weekend with food and fun.Awesome food...nice ambience...serving also super cool...recommended for the people who like American breakfast..'), ('Rated 4.0', 'RATED\n  Nice food and jovial owner. Apt for ppl who want to dine in silence with books. Sandwiches and veg omlete are particularly good. Worth a try.'), ('Rated 5.0', 'RATED\n  Wanna cup of coffee, a burger and chill out on Sunday morning, visit Dreams Cafe,\nKoramangala. Order food, Pick up a magazine or start a chess or carom game and chill. Having homely atmosphere this place is a must suggested place for hangout. Had a nice burger with sausage and french fries, couple of weeks back. Soon to visit again.'), ('Rated 5.0', 'RATED\n  Nice place to hangout and tasty food, good ambience, good people, I would like to recommend all who are reading this review to go there once and experience the experience.'), ('Rated 5.0', 'RATED\n  Foods are very very good here and you can get every type of english foods here. Services and all are very good. This is the one place where you can get everything good.'), ('Rated 4.5', 'RATED\n  Dreams Cafe is the place where you can spend your weekend with food and fun.Awesome food...nice ambience...serving also super cool...recommended for the people who like American breakfast..'), ('Rated 5.0', 'RATED\n  Yummy English breakfast and burgers. I will definitely recommend to everyone. The retro ambience will remind you the 1980 s. Their quick service will make you say WOW! I Appreciate the whole team behind this venture. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'), ('Rated 1.0', 'RATED\n  They are understaffed and they have no power backup. We had to wait for 90 minutes for our food to arrive. Please avoid this place if you want to save your time. Food is average only. And they should do something about mosquitos.'), ('Rated 1.0', 'RATED\n  Ordered online. Not recommended at all.\nChili cheese "toast" means you need to toast the bread, not put some cheese and green chili pieces between 2 pieces of white bread. No bread was toasted btw, not even the bread that accompanies Typical English Breakfast.\nI do not know your packaging policy, but giving coffee in a leaking aluminum wrap is not a good idea at all. Please remove the option of coffee from home delivery if you cannot afford to send it in cartons, like other food joints.'), ('Rated 5.0', "RATED\n  I had Gopi parota, allu tikki with a Coffee today afternoon. It's really yummy? I would love to have my breakfast regularly in Dreams Cafe. I would love to recommend to the people for the English breakfast."), ('Rated 5.0', 'RATED\n  Dreams , as name itself rolls you down to your comfort zone. Me and m wife decided on the Grilled Veg sandwich and then the unanimous order was Dreams Tea with English Breakfast. As soon as my sandwich came i took a bite and the reaction was "Woah!, this is a great grilled cheese!" \nEnglish breakfast we had, was the best in koramangala and HSR layout. great blend of taste with sauages, baked beans and mushrooms..\nOverall a big thumbs up! All 3 pillars Service, Food and Ambience stand tall . Overll a col and cosy place to spend time'), ('Rated 5.0', 'RATED\n  Yummy English breakfast and burgers. I will definitely recommend to everyone. The retro ambience will remind you the 1980 s. Their quick service will make you say WOW! I Appreciate the whole team behind this venture. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'), ('Rated 1.0', 'RATED\n  They are understaffed and they have no power backup. We had to wait for 90 minutes for our food to arrive. Please avoid this place if you want to save your time. Food is average only. And they should do something about mosquitos.'), ('Rated 1.0', 'RATED\n  Ordered online. Not recommended at all.\nChili cheese "toast" means you need to toast the bread, not put some cheese and green chili pieces between 2 pieces of white bread. No bread was toasted btw, not even the bread that accompanies Typical English Breakfast.\nI do not know your packaging policy, but giving coffee in a leaking aluminum wrap is not a good idea at all. Please remove the option of coffee from home delivery if you cannot afford to send it in cartons, like other food joints.'), ('Rated 5.0', "RATED\n  I had Gopi parota, allu tikki with a Coffee today afternoon. It's really yummy? I would love to have my breakfast regularly in Dreams Cafe. I would love to recommend to the people for the English breakfast."), ('Rated 5.0', 'RATED\n  Dreams , as name itself rolls you down to your comfort zone. Me and m wife decided on the Grilled Veg sandwich and then the unanimous order was Dreams Tea with English Breakfast. As soon as my sandwich came i took a bite and the reaction was "Woah!, this is a great grilled cheese!" \nEnglish breakfast we had, was the best in koramangala and HSR layout. great blend of taste with sauages, baked beans and mushrooms..\nOverall a big thumbs up! All 3 pillars Service, Food and Ambience stand tall . Overll a col and cosy place to spend time'), ('Rated 5.0', 'RATED\n  Yummy English breakfast and burgers. I will definitely recommend to everyone. The retro ambience will remind you the 1980 s. Their quick service will make you say WOW! I Appreciate the whole team behind this venture. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'), ('Rated 1.0', 'RATED\n  They are understaffed and they have no power backup. We had to wait for 90 minutes for our food to arrive. Please avoid this place if you want to save your time. Food is average only. And they should do something about mosquitos.'), ('Rated 1.0', 'RATED\n  Ordered online. Not recommended at all.\nChili cheese "toast" means you need to toast the bread, not put some cheese and green chili pieces between 2 pieces of white bread. No bread was toasted btw, not even the bread that accompanies Typical English Breakfast.\nI do not know your packaging policy, but giving coffee in a leaking aluminum wrap is not a good idea at all. Please remove the option of coffee from home delivery if you cannot afford to send it in cartons, like other food joints.'), ('Rated 5.0', "RATED\n  I had Gopi parota, allu tikki with a Coffee today afternoon. It's really yummy? I would love to have my breakfast regularly in Dreams Cafe. I would love to recommend to the people for the English breakfast."), ('Rated 5.0', 'RATED\n  Dreams , as name itself rolls you down to your comfort zone. Me and m wife decided on the Grilled Veg sandwich and then the unanimous order was Dreams Tea with English Breakfast. As soon as my sandwich came i took a bite and the reaction was "Woah!, this is a great grilled cheese!" \nEnglish breakfast we had, was the best in koramangala and HSR layout. great blend of taste with sauages, baked beans and mushrooms..\nOverall a big thumbs up! All 3 pillars Service, Food and Ambience stand tall . Overll a col and cosy place to spend time'), ('Rated 1.0', 'RATED\n  Worst place ever.we had to wait for 1.5 hour for our food. I ordered a veg burger which was made of fruit bun . The waiter or who so ever was that guy was roaming around in his pyjama . We ordered a burger coldrink and fries combo and they forgot to bring the fries.one of the burgers was upside down. No wonder this place had no footfall .'), ('Rated 5.0', 'RATED\n  If anybody is in Bangalore and want to have delicious food that to not expensive, Dreams Caffe is your place. I ordered mix fried rice - chicken and let me tell you this one was so tasty that my taste buds can still recall that taste.  Hope to visit again and try other food items as well.'), ('Rated 5.0', "RATED\n  Went to this place for the second time. Ambience is very calm and soothing, service is really good. Owner came to us personally for the feedback, that's really appreciable, as to how he was managing to not to leave any customer unattended. We ordered English breakfast, Oreo chocolate shake, veg burger, cold coffee.\n\nFood quality 5/5\nService 5/5\nAmbience 4.5/5\nOverall experience 4.5/5"), ('Rated 1.0', "RATED\n  Literally loathed everything about this cafe.\nJust a waste of money\nWouldn't recommend anyone\nThere are far better places for breakfast in town\nWe were charged unreasonably. Doesn't do any justice to English breakfast"), ('Rated 4.5', 'RATED\n  We normally go out exploring different cafes and restaurants in the city.\n\nThe ambience is very very calm and soothing. Very Homely atomsphere which was really different and nice\n\nFood was amazing. Almost everything was perfect to the last bite.\n\nWe ordered:\n\n1. Texas Meaty Burger. (Amazing. One of the best burgers in town)\n\n2. Pork lover Breakfast . (Amazing.).\n\n3. Oreo Chocalate shake. (A must order drink)\n\n4. Basket of Fry. (Very good. French fries & Wedges)\n\nOverall a great place to visit with friends. Amazing food. Service is also good.'), ('Rated 1.0', 'RATED\n  Worst place ever.we had to wait for 1.5 hour for our food. I ordered a veg burger which was made of fruit bun . The waiter or who so ever was that guy was roaming around in his pyjama . We ordered a burger coldrink and fries combo and they forgot to bring the fries.one of the burgers was upside down. No wonder this place had no footfall .'), ('Rated 5.0', 'RATED\n  If anybody is in Bangalore and want to have delicious food that to not expensive, Dreams Caffe is your place. I ordered mix fried rice - chicken and let me tell you this one was so tasty that my taste buds can still recall that taste.  Hope to visit again and try other food items as well.'), ('Rated 5.0', "RATED\n  Went to this place for the second time. Ambience is very calm and soothing, service is really good. Owner came to us personally for the feedback, that's really appreciable, as to how he was managing to not to leave any customer unattended. We ordered English breakfast, Oreo chocolate shake, veg burger, cold coffee.\n\nFood quality 5/5\nService 5/5\nAmbience 4.5/5\nOverall experience 4.5/5"), ('Rated 1.0', "RATED\n  Literally loathed everything about this cafe.\nJust a waste of money\nWouldn't recommend anyone\nThere are far better places for breakfast in town\nWe were charged unreasonably. Doesn't do any justice to English breakfast"), ('Rated 4.5', 'RATED\n  We normally go out exploring different cafes and restaurants in the city.\n\nThe ambience is very very calm and soothing. Very Homely atomsphere which was really different and nice\n\nFood was amazing. Almost everything was perfect to the last bite.\n\nWe ordered:\n\n1. Texas Meaty Burger. (Amazing. One of the best burgers in town)\n\n2. Pork lover Breakfast . (Amazing.).\n\n3. Oreo Chocalate shake. (A must order drink)\n\n4. Basket of Fry. (Very good. French fries & Wedges)\n\nOverall a great place to visit with friends. Amazing food. Service is also good.'), ('Rated 1.0', 'RATED\n  Worst place ever.we had to wait for 1.5 hour for our food. I ordered a veg burger which was made of fruit bun . The waiter or who so ever was that guy was roaming around in his pyjama . We ordered a burger coldrink and fries combo and they forgot to bring the fries.one of the burgers was upside down. No wonder this place had no footfall .'), ('Rated 5.0', 'RATED\n  If anybody is in Bangalore and want to have delicious food that to not expensive, Dreams Caffe is your place. I ordered mix fried rice - chicken and let me tell you this one was so tasty that my taste buds can still recall that taste.  Hope to visit again and try other food items as well.'), ('Rated 5.0', "RATED\n  Went to this place for the second time. Ambience is very calm and soothing, service is really good. Owner came to us personally for the feedback, that's really appreciable, as to how he was managing to not to leave any customer unattended. We ordered English breakfast, Oreo chocolate shake, veg burger, cold coffee.\n\nFood quality 5/5\nService 5/5\nAmbience 4.5/5\nOverall experience 4.5/5"), ('Rated 1.0', "RATED\n  Literally loathed everything about this cafe.\nJust a waste of money\nWouldn't recommend anyone\nThere are far better places for breakfast in town\nWe were charged unreasonably. Doesn't do any justice to English breakfast"), ('Rated 4.5', 'RATED\n  We normally go out exploring different cafes and restaurants in the city.\n\nThe ambience is very very calm and soothing. Very Homely atomsphere which was really different and nice\n\nFood was amazing. Almost everything was perfect to the last bite.\n\nWe ordered:\n\n1. Texas Meaty Burger. (Amazing. One of the best burgers in town)\n\n2. Pork lover Breakfast . (Amazing.).\n\n3. Oreo Chocalate shake. (A must order drink)\n\n4. Basket of Fry. (Very good. French fries & Wedges)\n\nOverall a great place to visit with friends. Amazing food. Service is also good.'), ('Rated 1.0', 'RATED\n  Worst place ever.we had to wait for 1.5 hour for our food. I ordered a veg burger which was made of fruit bun . The waiter or who so ever was that guy was roaming around in his pyjama . We ordered a burger coldrink and fries combo and they forgot to bring the fries.one of the burgers was upside down. No wonder this place had no footfall .'), ('Rated 5.0', 'RATED\n  If anybody is in Bangalore and want to have delicious food that to not expensive, Dreams Caffe is your place. I ordered mix fried rice - chicken and let me tell you this one was so tasty that my taste buds can still recall that taste.  Hope to visit again and try other food items as well.'), ('Rated 5.0', "RATED\n  Went to this place for the second time. Ambience is very calm and soothing, service is really good. Owner came to us personally for the feedback, that's really appreciable, as to how he was managing to not to leave any customer unattended. We ordered English breakfast, Oreo chocolate shake, veg burger, cold coffee.\n\nFood quality 5/5\nService 5/5\nAmbience 4.5/5\nOverall experience 4.5/5"), ('Rated 1.0', "RATED\n  Literally loathed everything about this cafe.\nJust a waste of money\nWouldn't recommend anyone\nThere are far better places for breakfast in town\nWe were charged unreasonably. Doesn't do any justice to English breakfast"), ('Rated 4.5', 'RATED\n  We normally go out exploring different cafes and restaurants in the city.\n\nThe ambience is very very calm and soothing. Very Homely atomsphere which was really different and nice\n\nFood was amazing. Almost everything was perfect to the last bite.\n\nWe ordered:\n\n1. Texas Meaty Burger. (Amazing. One of the best burgers in town)\n\n2. Pork lover Breakfast . (Amazing.).\n\n3. Oreo Chocalate shake. (A must order drink)\n\n4. Basket of Fry. (Very good. French fries & Wedges)\n\nOverall a great place to visit with friends. Amazing food. Service is also good.'), ('Rated 1.0', 'RATED\n  Worst place ever.we had to wait for 1.5 hour for our food. I ordered a veg burger which was made of fruit bun . The waiter or who so ever was that guy was roaming around in his pyjama . We ordered a burger coldrink and fries combo and they forgot to bring the fries.one of the burgers was upside down. No wonder this place had no footfall .'), ('Rated 5.0', 'RATED\n  If anybody is in Bangalore and want to have delicious food that to not expensive, Dreams Caffe is your place. I ordered mix fried rice - chicken and let me tell you this one was so tasty that my taste buds can still recall that taste.  Hope to visit again and try other food items as well.'), ('Rated 5.0', "RATED\n  Went to this place for the second time. Ambience is very calm and soothing, service is really good. Owner came to us personally for the feedback, that's really appreciable, as to how he was managing to not to leave any customer unattended. We ordered English breakfast, Oreo chocolate shake, veg burger, cold coffee.\n\nFood quality 5/5\nService 5/5\nAmbience 4.5/5\nOverall experience 4.5/5"), ('Rated 1.0', "RATED\n  Literally loathed everything about this cafe.\nJust a waste of money\nWouldn't recommend anyone\nThere are far better places for breakfast in town\nWe were charged unreasonably. Doesn't do any justice to English breakfast"), ('Rated 4.5', 'RATED\n  We normally go out exploring different cafes and restaurants in the city.\n\nThe ambience is very very calm and soothing. Very Homely atomsphere which was really different and nice\n\nFood was amazing. Almost everything was perfect to the last bite.\n\nWe ordered:\n\n1. Texas Meaty Burger. (Amazing. One of the best burgers in town)\n\n2. Pork lover Breakfast . (Amazing.).\n\n3. Oreo Chocalate shake. (A must order drink)\n\n4. Basket of Fry. (Very good. French fries & Wedges)\n\nOverall a great place to visit with friends. Amazing food. Service is also good.'), ('Rated 1.0', 'RATED\n  Low maintenance place. Can literally make anything at home. The whole purpose of eating out is to break away from home food for a while but the essence of this feeling is absolutely lost here.'), ('Rated 4.0', 'RATED\n  A great place for brunch! I had ordered English breakfast  & cold coffee. Both of them were mouth watering and perfectly cooked.\n\nFood-4.5/5\n\nService-4/5\n\nAmbience-4/5'), ('Rated 4.5', 'RATED\n  A good place visiting 2nd time last time the service was slow but this time it was really good and food we ordered was 2 English breakfast and 1 pork lovers breakfast , Sausage and Bacon was great eggs they did as we asked which was good.. overall a nice place for the breakfast'), ('Rated 5.0', 'RATED\n  I and my friends had been to this place last week. I would really love to say that their service was very good.\nThe Meaty burger was very yummy, I really recommend others try this place which is located at Koramangala.\n\nGreat care taken by the owner himself which is a really gud thing, much appreciated.'), ('Rated 1.0', 'RATED\n  Delay in service ... After such a long wait ..... you get a poor quality food !!! Ambience is bad .You will also get to smell of gutter in case you chose to sit outside.\nNot recommended'), ('Rated 1.0', 'RATED\n  Low maintenance place. Can literally make anything at home. The whole purpose of eating out is to break away from home food for a while but the essence of this feeling is absolutely lost here.'), ('Rated 4.0', 'RATED\n  A great place for brunch! I had ordered English breakfast  & cold coffee. Both of them were mouth watering and perfectly cooked.\n\nFood-4.5/5\n\nService-4/5\n\nAmbience-4/5'), ('Rated 4.5', 'RATED\n  A good place visiting 2nd time last time the service was slow but this time it was really good and food we ordered was 2 English breakfast and 1 pork lovers breakfast , Sausage and Bacon was great eggs they did as we asked which was good.. overall a nice place for the breakfast'), ('Rated 5.0', 'RATED\n  I and my friends had been to this place last week. I would really love to say that their service was very good.\nThe Meaty burger was very yummy, I really recommend others try this place which is located at Koramangala.\n\nGreat care taken by the owner himself which is a really gud thing, much appreciated.'), ('Rated 1.0', 'RATED\n  Delay in service ... After such a long wait ..... you get a poor quality food !!! Ambience is bad .You will also get to smell of gutter in case you chose to sit outside.\nNot recommended'), ('Rated 5.0', 'RATED\n  A great place for a breakfast with the family . Went with friends all enjoyed the food overall a great experience .............................'), ('Rated 4.5', 'RATED\n  Had breakfast at dreams cafe today ....very nice ambience good food . Best recomended pork lovers breakfast and cold coffee\nService was sliw due to crowd but worth the wait'), ('Rated 1.0', 'RATED\n  Very late service. Waited for half an hour for food and served cold food. Didn\'t expect that from a cafe which says "Dream Cafe". Please improve the service time and please serve hot food'), ('Rated 4.5', 'RATED\n  We get great food and best value for money here. Best is the bacaon burger with beef patty my friends tried english breakfast even they were very happy with the food overall great place to visit'), ('Rated 1.0', 'RATED\n  The ambiance is not at all fresh and is inelegant inside. They do not value the customer experience at all.The Smoothie I ordered smelled like some mix of medicine and additives. I complained to the waiter who brought it for me. He heard and was ignorant. I asked him to call the manager.He calls a lady- perhaps she is the owner. The lady replies in arrogance " We taste the food before serving. I don\'t think that it is bad". This is the worst place to hangout.Just because ZOMATO doesn\'t give a "ZERO" rating Option, you get 1.'), ('Rated 5.0', 'RATED\n  A great place for a breakfast with the family . Went with friends all enjoyed the food overall a great experience .............................'), ('Rated 4.5', 'RATED\n  Had breakfast at dreams cafe today ....very nice ambience good food . Best recomended pork lovers breakfast and cold coffee\nService was sliw due to crowd but worth the wait'), ('Rated 1.0', 'RATED\n  Very late service. Waited for half an hour for food and served cold food. Didn\'t expect that from a cafe which says "Dream Cafe". Please improve the service time and please serve hot food'), ('Rated 4.5', 'RATED\n  We get great food and best value for money here. Best is the bacaon burger with beef patty my friends tried english breakfast even they were very happy with the food overall great place to visit'), ('Rated 1.0', 'RATED\n  The ambiance is not at all fresh and is inelegant inside. They do not value the customer experience at all.The Smoothie I ordered smelled like some mix of medicine and additives. I complained to the waiter who brought it for me. He heard and was ignorant. I asked him to call the manager.He calls a lady- perhaps she is the owner. The lady replies in arrogance " We taste the food before serving. I don\'t think that it is bad". This is the worst place to hangout.Just because ZOMATO doesn\'t give a "ZERO" rating Option, you get 1.'), ('Rated 5.0', 'RATED\n  A great place for a breakfast with the family . Went with friends all enjoyed the food overall a great experience .............................'), ('Rated 4.5', 'RATED\n  Had breakfast at dreams cafe today ....very nice ambience good food . Best recomended pork lovers breakfast and cold coffee\nService was sliw due to crowd but worth the wait'), ('Rated 1.0', 'RATED\n  Very late service. Waited for half an hour for food and served cold food. Didn\'t expect that from a cafe which says "Dream Cafe". Please improve the service time and please serve hot food'), ('Rated 4.5', 'RATED\n  We get great food and best value for money here. Best is the bacaon burger with beef patty my friends tried english breakfast even they were very happy with the food overall great place to visit'), ('Rated 1.0', 'RATED\n  The ambiance is not at all fresh and is inelegant inside. They do not value the customer experience at all.The Smoothie I ordered smelled like some mix of medicine and additives. I complained to the waiter who brought it for me. He heard and was ignorant. I asked him to call the manager.He calls a lady- perhaps she is the owner. The lady replies in arrogance " We taste the food before serving. I don\'t think that it is bad". This is the worst place to hangout.Just because ZOMATO doesn\'t give a "ZERO" rating Option, you get 1.'), ('Rated 3.5', "RATED\n  We accidentally walked into this place, these guys have a small set-up, but they plan to make it all the more happening with carrom and few other games, it's a house converted into a cafe. Very peaceful, the ambience isn't that pleasing as we sat out, I ordered a veg delight breakfast and wasn't very pleased with it, my friends on the other hand had ordered bacon breakfast and they were delighted. It's definitely worth the money, pocket friendly. We walked into the house when we had to leave and that's when we realised there was more to this place, it's a pretty good place for decent food."), ('Rated 5.0', 'RATED\n  Great place to hangout . Food was superb , we tried English Breakfast, very well made ,Bacon/Sausage was perfect, Mashed potato was simply amazing , will come back to try other items'), ('Rated 5.0', 'RATED\n  I had been to this place & had Typical English Breakfast and it was awesome to have it, I recomment to come here and enjoy the food,Thank you'), ('Rated 4.5', 'RATED\n  1. ambience: Plenty of space to sit but average ambicence though.\n\n2. parking: good for two wheelers. Not so for cars.\n\n3. taste: I had two dishes\n\n    a. veg burger combo: Burger with fries and coke were great. ----4/5\n\n    b. masala omlette: very tasty omlette.---4/5\n\n4. speed and service: I got my food under 10 mins. So the speed and service are great.\n\n5. value for money: 4/5. Great burgers at a cheap price. Will come back for sure.'), ('Rated 4.0', "RATED\n  Have been a regular. What I like is the laid back homely atmosphere. It's like having a snack at your friends place. Pick a book to read as you eat...Agreed the foot-fall is not as expected on a weekend, but that's a good thing! Usually go there with my family for Sunday brunch. Love the chicken burger, chicken sandwich, hot chocolate, green tea with ginger and honey. Did you know you can customize your menu with cut cucumbers and carrots instead of french fries...well try next time when you are at the restaurant."), ('Rated 3.5', "RATED\n  We accidentally walked into this place, these guys have a small set-up, but they plan to make it all the more happening with carrom and few other games, it's a house converted into a cafe. Very peaceful, the ambience isn't that pleasing as we sat out, I ordered a veg delight breakfast and wasn't very pleased with it, my friends on the other hand had ordered bacon breakfast and they were delighted. It's definitely worth the money, pocket friendly. We walked into the house when we had to leave and that's when we realised there was more to this place, it's a pretty good place for decent food."), ('Rated 5.0', 'RATED\n  Great place to hangout . Food was superb , we tried English Breakfast, very well made ,Bacon/Sausage was perfect, Mashed potato was simply amazing , will come back to try other items'), ('Rated 5.0', 'RATED\n  I had been to this place & had Typical English Breakfast and it was awesome to have it, I recomment to come here and enjoy the food,Thank you'), ('Rated 4.5', 'RATED\n  1. ambience: Plenty of space to sit but average ambicence though.\n\n2. parking: good for two wheelers. Not so for cars.\n\n3. taste: I had two dishes\n\n    a. veg burger combo: Burger with fries and coke were great. ----4/5\n\n    b. masala omlette: very tasty omlette.---4/5\n\n4. speed and service: I got my food under 10 mins. So the speed and service are great.\n\n5. value for money: 4/5. Great burgers at a cheap price. Will come back for sure.'), ('Rated 4.0', "RATED\n  Have been a regular. What I like is the laid back homely atmosphere. It's like having a snack at your friends place. Pick a book to read as you eat...Agreed the foot-fall is not as expected on a weekend, but that's a good thing! Usually go there with my family for Sunday brunch. Love the chicken burger, chicken sandwich, hot chocolate, green tea with ginger and honey. Did you know you can customize your menu with cut cucumbers and carrots instead of french fries...well try next time when you are at the restaurant."), ('Rated 3.5', "RATED\n  We accidentally walked into this place, these guys have a small set-up, but they plan to make it all the more happening with carrom and few other games, it's a house converted into a cafe. Very peaceful, the ambience isn't that pleasing as we sat out, I ordered a veg delight breakfast and wasn't very pleased with it, my friends on the other hand had ordered bacon breakfast and they were delighted. It's definitely worth the money, pocket friendly. We walked into the house when we had to leave and that's when we realised there was more to this place, it's a pretty good place for decent food."), ('Rated 5.0', 'RATED\n  Great place to hangout . Food was superb , we tried English Breakfast, very well made ,Bacon/Sausage was perfect, Mashed potato was simply amazing , will come back to try other items'), ('Rated 5.0', 'RATED\n  I had been to this place & had Typical English Breakfast and it was awesome to have it, I recomment to come here and enjoy the food,Thank you'), ('Rated 4.5', 'RATED\n  1. ambience: Plenty of space to sit but average ambicence though.\n\n2. parking: good for two wheelers. Not so for cars.\n\n3. taste: I had two dishes\n\n    a. veg burger combo: Burger with fries and coke were great. ----4/5\n\n    b. masala omlette: very tasty omlette.---4/5\n\n4. speed and service: I got my food under 10 mins. So the speed and service are great.\n\n5. value for money: 4/5. Great burgers at a cheap price. Will come back for sure.'), ('Rated 4.0', "RATED\n  Have been a regular. What I like is the laid back homely atmosphere. It's like having a snack at your friends place. Pick a book to read as you eat...Agreed the foot-fall is not as expected on a weekend, but that's a good thing! Usually go there with my family for Sunday brunch. Love the chicken burger, chicken sandwich, hot chocolate, green tea with ginger and honey. Did you know you can customize your menu with cut cucumbers and carrots instead of french fries...well try next time when you are at the restaurant."), ('Rated 5.0', 'RATED\n  This is one great place for english breakfast which I am surprised that I missed out some how for so long\nVery good food\nNice service\nNice place'), ('Rated 4.0', 'RATED\n  been here last week with friends a great place for breakfast mainly very good service\nwe had English breakfast, beef burger and bacon burger, i would say bacon burger with beef patty is the best , if u r going here ask for beef patty for bacon burger or they will give chicken patty as normal,\na great value for the price spend ....will surely come back for the burgers /breakfast\ntea was good , but coffee was excellent'), ('Rated 5.0', 'RATED\n  all day english breakfast is special , specially for\n\npeople like us who gets up late,\n\nsaw this place dreams cafe next to just bake , near to\n\ncafe thulp , was not aware about this place before..\n\nwent with the family, ordered pork lovers breakfast and\n\n2 english breakfast, 2 cofee and tea...we got coffee and tea for 1/- as add on offer which was great gesture ...\n\nFood : Very good\n\nTimings : 15- 20 min decent\n\nAmbiance : Super\n\nService : Excellent'), ('Rated 4.5', 'RATED\n  Great place for food Liked the ambiance had english breakfast with cold coffee Chicken sausage was yummy would surely come back . Will recommend this place'), ('Rated 1.0', 'RATED\n  surprised by reviews. we werw the only 2 customers for sat morning breakfast. Depressing place. ordered pork overs breakfast. what i got was stale bread, atleast a day old mashed potatoes. burnt bacon. wow. They surely cleaned their old inventory on us. Thats why wise men say , if you find yourself to be the only customer at a eatery just walk away. your pallete will thank you for a bold decision.Bye Bye dream cafe errr nightmare'), ('Rated 5.0', 'RATED\n  This is one great place for english breakfast which I am surprised that I missed out some how for so long\nVery good food\nNice service\nNice place'), ('Rated 4.0', 'RATED\n  been here last week with friends a great place for breakfast mainly very good service\nwe had English breakfast, beef burger and bacon burger, i would say bacon burger with beef patty is the best , if u r going here ask for beef patty for bacon burger or they will give chicken patty as normal,\na great value for the price spend ....will surely come back for the burgers /breakfast\ntea was good , but coffee was excellent'), ('Rated 5.0', 'RATED\n  all day english breakfast is special , specially for\n\npeople like us who gets up late,\n\nsaw this place dreams cafe next to just bake , near to\n\ncafe thulp , was not aware about this place before..\n\nwent with the family, ordered pork lovers breakfast and\n\n2 english breakfast, 2 cofee and tea...we got coffee and tea for 1/- as add on offer which was great gesture ...\n\nFood : Very good\n\nTimings : 15- 20 min decent\n\nAmbiance : Super\n\nService : Excellent'), ('Rated 4.5', 'RATED\n  Great place for food Liked the ambiance had english breakfast with cold coffee Chicken sausage was yummy would surely come back . Will recommend this place'), ('Rated 1.0', 'RATED\n  surprised by reviews. we werw the only 2 customers for sat morning breakfast. Depressing place. ordered pork overs breakfast. what i got was stale bread, atleast a day old mashed potatoes. burnt bacon. wow. They surely cleaned their old inventory on us. Thats why wise men say , if you find yourself to be the only customer at a eatery just walk away. your pallete will thank you for a bold decision.Bye Bye dream cafe errr nightmare'), ('Rated 4.0', 'RATED\n  I was drawn in by their claim of "All Day English Breakfast". The property was probably someone\'s house at some point, and the restaurant hasn\'t made any change to the structure. So the sitting arrangement is spread across three rooms, and the furniture ranged from wooden, to wicker to leather. This made for a very cozy, \'friend\'s house\' ambiance.\n\nThe food was great and the wait was reasonable. There is a collection of books by the leather couch, which unfortunately is for display only, as several signs warn, but they do let you play the board games.\n\nI wish the bathroom was a little more in keeping with the rest of the place, but it wasn\'t awful.\n\nThe people in the cafe were friendly and very polite. The prices are in keeping with the costs of most cafes around Bangalore, maybe slightly cheaper than some.\n\nI will definitely come back.'), ('Rated 5.0', "RATED\n  Have a meeting or catch up with friends or sit and read or even work. Food options for vegetarians is little but the it's great, well priced. Ambience is also very good."), ('Rated 3.0', 'RATED\n  One of the numerous eateries that offer breakfast combos in Koramangala.\nWent in one fine Saturday morning - decent house-converted-to-an-eatery kind of ambience, seating was comfortable. Surprisingly, not many patrons ( which is rare, on weekends, in Koramangala ).\nOrdered the pork lovers breakfast and a couple of pancakes - the breakfast was okay. The pork and bacon were good but the mashed potato was a little bit on the bland side. The pancakes were disappointing, they tasted like solidified rice batter without the syrup. \nOverall, not impressed much.'), ('Rated 4.5', 'RATED\n  I loved the french omelette. And all my stars are because it my day. Coming to the ambience , its just so wild! All the colors are popping. Might try other dishes another day.'), ('Rated 4.0', 'RATED\n  I was drawn in by their claim of "All Day English Breakfast". The property was probably someone\'s house at some point, and the restaurant hasn\'t made any change to the structure. So the sitting arrangement is spread across three rooms, and the furniture ranged from wooden, to wicker to leather. This made for a very cozy, \'friend\'s house\' ambiance.\n\nThe food was great and the wait was reasonable. There is a collection of books by the leather couch, which unfortunately is for display only, as several signs warn, but they do let you play the board games.\n\nI wish the bathroom was a little more in keeping with the rest of the place, but it wasn\'t awful.\n\nThe people in the cafe were friendly and very polite. The prices are in keeping with the costs of most cafes around Bangalore, maybe slightly cheaper than some.\n\nI will definitely come back.'), ('Rated 5.0', "RATED\n  Have a meeting or catch up with friends or sit and read or even work. Food options for vegetarians is little but the it's great, well priced. Ambience is also very good."), ('Rated 3.0', 'RATED\n  One of the numerous eateries that offer breakfast combos in Koramangala.\nWent in one fine Saturday morning - decent house-converted-to-an-eatery kind of ambience, seating was comfortable. Surprisingly, not many patrons ( which is rare, on weekends, in Koramangala ).\nOrdered the pork lovers breakfast and a couple of pancakes - the breakfast was okay. The pork and bacon were good but the mashed potato was a little bit on the bland side. The pancakes were disappointing, they tasted like solidified rice batter without the syrup. \nOverall, not impressed much.'), ('Rated 4.5', 'RATED\n  I loved the french omelette. And all my stars are because it my day. Coming to the ambience , its just so wild! All the colors are popping. Might try other dishes another day.'), ('Rated 4.0', 'RATED\n  Visited #dreamscafe. Nice ambience. I with my two other friends had coffee. Coffee was good. They serve coffee with a toast. I will recommend dreamscafe.'), ('Rated 4.0', 'RATED\n  the first thing i felt as i entered in was a very homely warm comfortable feeling ... the prices are reasonable and as i dug into my tasty hot English breakfast. loved the food and the place ..will surely visit again.'), ('Rated 4.5', 'RATED\n  I am a regular customer now at this place \ni have tried English breakffast ,pork lovers breakfast, chilli pork and cold coffee so far will try many more in future\ncafe interior is nice ..best place to hang out with friends\ngood service and good food ... decently priced...... overall a nice experience'), ('Rated 2.5', "RATED\n  I had visited this place a week ago with a friend. It is a house that has been turned into a cafe. There is something different about this place. Maybe it's the theme.\nFinding this cafe is quite a task even though it is located on the main road.\nTried out deep fried pepper pork, chilli chicken and fried rice. The pork was simply perfect, perfectly cooked and marinated. Chilli chicken was over cooked and to contradict this were the chunks of chicken in the fried rice which was rubbery.\nOn the whole, this place was 'OK'. Just 'OK'. You might want to go here if you want to relax with a coffee and a couple of cigarettes."), ('Rated 3.5', "RATED\n  A cafe located in Koramangala first block. Ambience is not it's strong point, however it makes up for it with it's breakfast. I have tried their pork lover's breakfast and really enjoyed it! Their cold coffee is pretty good too. Staff is hospitable and service is quite fast."), ('Rated 4.0', 'RATED\n  Visited #dreamscafe. Nice ambience. I with my two other friends had coffee. Coffee was good. They serve coffee with a toast. I will recommend dreamscafe.'), ('Rated 4.0', 'RATED\n  the first thing i felt as i entered in was a very homely warm comfortable feeling ... the prices are reasonable and as i dug into my tasty hot English breakfast. loved the food and the place ..will surely visit again.'), ('Rated 4.5', 'RATED\n  I am a regular customer now at this place \ni have tried English breakffast ,pork lovers breakfast, chilli pork and cold coffee so far will try many more in future\ncafe interior is nice ..best place to hang out with friends\ngood service and good food ... decently priced...... overall a nice experience'), ('Rated 2.5', "RATED\n  I had visited this place a week ago with a friend. It is a house that has been turned into a cafe. There is something different about this place. Maybe it's the theme.\nFinding this cafe is quite a task even though it is located on the main road.\nTried out deep fried pepper pork, chilli chicken and fried rice. The pork was simply perfect, perfectly cooked and marinated. Chilli chicken was over cooked and to contradict this were the chunks of chicken in the fried rice which was rubbery.\nOn the whole, this place was 'OK'. Just 'OK'. You might want to go here if you want to relax with a coffee and a couple of cigarettes."), ('Rated 3.5', "RATED\n  A cafe located in Koramangala first block. Ambience is not it's strong point, however it makes up for it with it's breakfast. I have tried their pork lover's breakfast and really enjoyed it! Their cold coffee is pretty good too. Staff is hospitable and service is quite fast."), ('Rated 4.0', 'RATED\n  Visited #dreamscafe. Nice ambience. I with my two other friends had coffee. Coffee was good. They serve coffee with a toast. I will recommend dreamscafe.'), ('Rated 4.0', 'RATED\n  the first thing i felt as i entered in was a very homely warm comfortable feeling ... the prices are reasonable and as i dug into my tasty hot English breakfast. loved the food and the place ..will surely visit again.'), ('Rated 4.5', 'RATED\n  I am a regular customer now at this place \ni have tried English breakffast ,pork lovers breakfast, chilli pork and cold coffee so far will try many more in future\ncafe interior is nice ..best place to hang out with friends\ngood service and good food ... decently priced...... overall a nice experience'), ('Rated 2.5', "RATED\n  I had visited this place a week ago with a friend. It is a house that has been turned into a cafe. There is something different about this place. Maybe it's the theme.\nFinding this cafe is quite a task even though it is located on the main road.\nTried out deep fried pepper pork, chilli chicken and fried rice. The pork was simply perfect, perfectly cooked and marinated. Chilli chicken was over cooked and to contradict this were the chunks of chicken in the fried rice which was rubbery.\nOn the whole, this place was 'OK'. Just 'OK'. You might want to go here if you want to relax with a coffee and a couple of cigarettes."), ('Rated 3.5', "RATED\n  A cafe located in Koramangala first block. Ambience is not it's strong point, however it makes up for it with it's breakfast. I have tried their pork lover's breakfast and really enjoyed it! Their cold coffee is pretty good too. Staff is hospitable and service is quite fast."), ('Rated 4.5', 'RATED\n  Place : Good place to hang out with friends and relax \nService : Good service , food was on time \n\nwe had English breakfast and pork sausage fry , food was very tasty mashed potato was great ..liked the pork sausage fry a must try place for all the English breakfast lovers'), ('Rated 4.5', 'RATED\n  Great place and great food we tried English breakfast , chicken sandwich and beef burger. Nice coffee as well most important was tht the staff was very friendly'), ('Rated 4.0', 'RATED\n  Randomly walked into this quaint cafe With books, games and cozy ambiance, its one pleasing cafe located near to Wipro junction.Food.....almost everything they serve is good.\nWelcoming staff...warm smiles...'), ('Rated 3.0', 'RATED\n  This place is pretty close to my house.The waiters do explain what you actually get on the platter.Loved the yummy fish & mushrooms in English breakfast - a must try.'), ('Rated 4.5', 'RATED\n  Place : Good place to hang out with friends and relax \nService : Good service , food was on time \n\nwe had English breakfast and pork sausage fry , food was very tasty mashed potato was great ..liked the pork sausage fry a must try place for all the English breakfast lovers'), ('Rated 4.5', 'RATED\n  Great place and great food we tried English breakfast , chicken sandwich and beef burger. Nice coffee as well most important was tht the staff was very friendly'), ('Rated 4.0', 'RATED\n  Randomly walked into this quaint cafe With books, games and cozy ambiance, its one pleasing cafe located near to Wipro junction.Food.....almost everything they serve is good.\nWelcoming staff...warm smiles...'), ('Rated 3.0', 'RATED\n  This place is pretty close to my house.The waiters do explain what you actually get on the platter.Loved the yummy fish & mushrooms in English breakfast - a must try.'), ('Rated 4.5', "RATED\n  Been here couple of times n must say it's worth every penny spent. Good menu options. Serves all day English Breakfast which tastes really yummy n delicious. We also had Meaty Clash which serves Sausage,Ham n Bacon which was really awesome. Their Mocktail 's n Beverages r also too gud. It's a must visit if u wana hav som yummy food. Cozy n Comfortable place. Service was prompt, excellent courteous. Ova all had a very gud n pleasent time.\nThanks Antony 4 dis Awesome place.\nGod Bless."), ('Rated 4.5', 'RATED\n  Had been to this place a while back and the review is long over due.!!!!!Have to admit, one of the best places to go!!!!\n\nHad come here with my cousins and we all had their famous english breakfast, even though this place was closed on monday, the owner Mr.Antony opened it only for us (mainly because my brother knows him, not sure he would do the same for everyone) but the breakfast we had was insane, hands down - the BEST mashed potatoes and beans ever ..... !!!!!'), ('Rated 4.0', 'RATED\n  Very soft and subtle approach. But once inside, we were welcomed with a warm approach. Water served promptly followed by menu card. Reminds me of the star category restaurants. The ambience was extremely western. The music was pleasant and amusing. We ordered fish fingers, chilly cheese toast, beef burger with ham and cheese sandwich.\nThey served the main course 1st followed by starters. That was perhaps the o ly flaws noticed.\nComing to quality-toast and fish was served steaming hot. Sandwich was grilled to perfection. Burger had a nice mix of warm cutlet and vols veggies. The only flaw perhaps was the whole bacons as they did not cut in one bite and was coming out of the sandwich.\nOverall a great experience. Need tk work on the flow of service. Work on that and get a 5 star.'), ('Rated 4.5', 'RATED\n  This place serves good burger , we had Beef burger , chicken burger and jumbo bacon burger .. realy worth for the money its tasty and nice .. good place .....homely atomshr.....'), ('Rated 1.5', "RATED\n  The Chicken patty tastes really bad. I wouldn't recommend having that. The buns are huge and makes the burger look deceivingly big. And it broke before I could even take the first bite. The patty should have been bigger. And the cafe does not open at 8:30, but an hour later.\nThe beef patty tasted good. So did the Hot Chocolate. The ambience is homely."), ('Rated 4.5', "RATED\n  Been here couple of times n must say it's worth every penny spent. Good menu options. Serves all day English Breakfast which tastes really yummy n delicious. We also had Meaty Clash which serves Sausage,Ham n Bacon which was really awesome. Their Mocktail 's n Beverages r also too gud. It's a must visit if u wana hav som yummy food. Cozy n Comfortable place. Service was prompt, excellent courteous. Ova all had a very gud n pleasent time.\nThanks Antony 4 dis Awesome place.\nGod Bless."), ('Rated 4.5', 'RATED\n  Had been to this place a while back and the review is long over due.!!!!!Have to admit, one of the best places to go!!!!\n\nHad come here with my cousins and we all had their famous english breakfast, even though this place was closed on monday, the owner Mr.Antony opened it only for us (mainly because my brother knows him, not sure he would do the same for everyone) but the breakfast we had was insane, hands down - the BEST mashed potatoes and beans ever ..... !!!!!'), ('Rated 4.0', 'RATED\n  Very soft and subtle approach. But once inside, we were welcomed with a warm approach. Water served promptly followed by menu card. Reminds me of the star category restaurants. The ambience was extremely western. The music was pleasant and amusing. We ordered fish fingers, chilly cheese toast, beef burger with ham and cheese sandwich.\nThey served the main course 1st followed by starters. That was perhaps the o ly flaws noticed.\nComing to quality-toast and fish was served steaming hot. Sandwich was grilled to perfection. Burger had a nice mix of warm cutlet and vols veggies. The only flaw perhaps was the whole bacons as they did not cut in one bite and was coming out of the sandwich.\nOverall a great experience. Need tk work on the flow of service. Work on that and get a 5 star.'), ('Rated 4.5', 'RATED\n  This place serves good burger , we had Beef burger , chicken burger and jumbo bacon burger .. realy worth for the money its tasty and nice .. good place .....homely atomshr.....'), ('Rated 1.5', "RATED\n  The Chicken patty tastes really bad. I wouldn't recommend having that. The buns are huge and makes the burger look deceivingly big. And it broke before I could even take the first bite. The patty should have been bigger. And the cafe does not open at 8:30, but an hour later.\nThe beef patty tasted good. So did the Hot Chocolate. The ambience is homely."), ('Rated 4.5', 'RATED\n  We were just out on a walk when we spotted this small place. I ordered a veg burger, and was deeply delighted by it. It was one of the best burgers I have had so far. The decor is average. A mediocre attempt at being happening. The service can also be improved.'), ('Rated 3.5', 'RATED\n  this place offers a perfect set up for a early morning relaxed and lazy breakfast. Even if the place is completely filled up , you dont get that feeling of a crowded place because the tables are well spread out .\n\nI had one of the breakfast options which had omelet, ham and sausage....... and really liked it. The service was also nice and friendly.'), ('Rated 4.0', 'RATED\n  Homely ambience.\nNice welcome by owner.\nChicken nuggets and french fries are good.\nBurger is also good.\nWash rooms are average (needs improvement )'), ('Rated 5.0', 'RATED\n  This place is a must try for those who like english breakfast.....it was perfect,i think this place has to do good marketing as i was not aware abt this place  found it when traveling , this place will beat other  good english breakfast centers'), ('Rated 5.0', 'RATED\n  This would be my first review on zomoto and i am very happy that i am rating high as i liked this place well good food and best is the service they are not stuck with menu order like other places they were happy to do changes in the style of preparation just for our interest  it was a special day as it was our 1st wedding anvrsry \n\nwe tried : pork sausage , Bacon sandwich , cold coffee , cool blue , pork fried rice , chilli chicken and ice cream\nthe service was quick and made well'), ('Rated 4.5', 'RATED\n  We were just out on a walk when we spotted this small place. I ordered a veg burger, and was deeply delighted by it. It was one of the best burgers I have had so far. The decor is average. A mediocre attempt at being happening. The service can also be improved.'), ('Rated 3.5', 'RATED\n  this place offers a perfect set up for a early morning relaxed and lazy breakfast. Even if the place is completely filled up , you dont get that feeling of a crowded place because the tables are well spread out .\n\nI had one of the breakfast options which had omelet, ham and sausage....... and really liked it. The service was also nice and friendly.'), ('Rated 4.0', 'RATED\n  Homely ambience.\nNice welcome by owner.\nChicken nuggets and french fries are good.\nBurger is also good.\nWash rooms are average (needs improvement )'), ('Rated 5.0', 'RATED\n  This place is a must try for those who like english breakfast.....it was perfect,i think this place has to do good marketing as i was not aware abt this place  found it when traveling , this place will beat other  good english breakfast centers'), ('Rated 5.0', 'RATED\n  This would be my first review on zomoto and i am very happy that i am rating high as i liked this place well good food and best is the service they are not stuck with menu order like other places they were happy to do changes in the style of preparation just for our interest  it was a special day as it was our 1st wedding anvrsry \n\nwe tried : pork sausage , Bacon sandwich , cold coffee , cool blue , pork fried rice , chilli chicken and ice cream\nthe service was quick and made well'), ('Rated 4.0', 'RATED\n  I visited this place yesterday with some friends and i must say this place is great...The food was very tasty i have never tasted such good chillie pork before and we parceled more too...the music is slow and soothing and i loved the service ....We have decided to make this place our regular weekend hangout....Dreams Cafe is a must visit and so i recommend it to all....'), ('Rated 5.0', 'RATED\n  Lovely ambiance, great food, greatly priced, even have to say the people around were nice. You should visit this place if you are just meeting up or lazying around. Had the potato basket, pork sausages. I am an ardent tea drinker and i should day, its perfectly blended. Dinner was the jumbo burger and i have to say... it is jumbo. A must visit...'), ('Rated 4.5', 'RATED\n  Very nice place visited with family food was tasty best things to try here pepper pork , burger ,cold smoothies will surely come back to try English breakfast'), ('Rated 2.0', 'RATED\n  Not a great place i would say, the Coffee was okay but sandwitch n pork chilli was sad. They should concentrate on the quality pf the food and then the incpme will boost automatically.'), ('Rated 5.0', 'RATED\n  Visited this cafe just for snacks ... Nice place good service the bluberry cold coffee was too good .. Had basket of fry. It was tasty and filling'), ('Rated 4.0', 'RATED\n  I visited this place yesterday with some friends and i must say this place is great...The food was very tasty i have never tasted such good chillie pork before and we parceled more too...the music is slow and soothing and i loved the service ....We have decided to make this place our regular weekend hangout....Dreams Cafe is a must visit and so i recommend it to all....'), ('Rated 5.0', 'RATED\n  Lovely ambiance, great food, greatly priced, even have to say the people around were nice. You should visit this place if you are just meeting up or lazying around. Had the potato basket, pork sausages. I am an ardent tea drinker and i should day, its perfectly blended. Dinner was the jumbo burger and i have to say... it is jumbo. A must visit...'), ('Rated 4.5', 'RATED\n  Very nice place visited with family food was tasty best things to try here pepper pork , burger ,cold smoothies will surely come back to try English breakfast'), ('Rated 2.0', 'RATED\n  Not a great place i would say, the Coffee was okay but sandwitch n pork chilli was sad. They should concentrate on the quality pf the food and then the incpme will boost automatically.'), ('Rated 5.0', 'RATED\n  Visited this cafe just for snacks ... Nice place good service the bluberry cold coffee was too good .. Had basket of fry. It was tasty and filling'), ('Rated 3.0', 'RATED\n  A nice silent cafe where the service is dished out with a smile.\n\nBeen there with a cple of frnds...where we literally ordered all the non veg starters (2 plates each) the food was good.. but for voracious eaters like us it kind of was a let down on the quantity. .. some Items like the hotdog sausage is kind of overpriced considering the sausage in the ready to eat sausage that is being served.. otherwise a nice place to try it\n\n@dreams cafe .. the only little worry is tgat some sausages when been fried is not done so till the heat goes all the way to the middle of the sausage... hence we got a cple of sausages which were still ice cold on the middle..\n\nThe only company'), ('Rated 5.0', 'RATED\n  I have been to this place and did try the Chilly pork, which was very yummy and we kept ordering and ordering. The food was tasty and is really filling. For those who love a silent cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© to spend some quality time, Dreams cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© should be your choice. I have been there with my husband and kids, they have enjoyed an nothing can resist us from eating and enjoying the ambience at Dreams CafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.Good place and definitely recommend the cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© to the people out in Bangalore.'), ('Rated 5.0', 'RATED\n  gud place, never thought koramangala had such a comfortable cafe to hangout with loved ones and friends...!!!! chilli pork was one of the dish i enjoyed the most..\ncompared to others your price is also reasonable.. !!!'), ('Rated 5.0', 'RATED\n  it was my first visit to the cafe and it was quiet a wonderful experience... the service was also good .... very comfortable place to visit ... my next visit will be with my family.. :-)'), ('Rated 4.5', 'RATED\n  Kept my son 1st year birthday celeb at dreams cafe.... wonderfull place and good food all my guests were very happy ..Would surely recommend this place for all'), ('Rated 3.0', 'RATED\n  A nice silent cafe where the service is dished out with a smile.\n\nBeen there with a cple of frnds...where we literally ordered all the non veg starters (2 plates each) the food was good.. but for voracious eaters like us it kind of was a let down on the quantity. .. some Items like the hotdog sausage is kind of overpriced considering the sausage in the ready to eat sausage that is being served.. otherwise a nice place to try it\n\n@dreams cafe .. the only little worry is tgat some sausages when been fried is not done so till the heat goes all the way to the middle of the sausage... hence we got a cple of sausages which were still ice cold on the middle..\n\nThe only company'), ('Rated 5.0', 'RATED\n  I have been to this place and did try the Chilly pork, which was very yummy and we kept ordering and ordering. The food was tasty and is really filling. For those who love a silent cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© to spend some quality time, Dreams cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© should be your choice. I have been there with my husband and kids, they have enjoyed an nothing can resist us from eating and enjoying the ambience at Dreams CafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.Good place and definitely recommend the cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© to the people out in Bangalore.'), ('Rated 5.0', 'RATED\n  gud place, never thought koramangala had such a comfortable cafe to hangout with loved ones and friends...!!!! chilli pork was one of the dish i enjoyed the most..\ncompared to others your price is also reasonable.. !!!'), ('Rated 5.0', 'RATED\n  it was my first visit to the cafe and it was quiet a wonderful experience... the service was also good .... very comfortable place to visit ... my next visit will be with my family.. :-)'), ('Rated 4.5', 'RATED\n  Kept my son 1st year birthday celeb at dreams cafe.... wonderfull place and good food all my guests were very happy ..Would surely recommend this place for all'), ('Rated 3.0', 'RATED\n  A nice silent cafe where the service is dished out with a smile.\n\nBeen there with a cple of frnds...where we literally ordered all the non veg starters (2 plates each) the food was good.. but for voracious eaters like us it kind of was a let down on the quantity. .. some Items like the hotdog sausage is kind of overpriced considering the sausage in the ready to eat sausage that is being served.. otherwise a nice place to try it\n\n@dreams cafe .. the only little worry is tgat some sausages when been fried is not done so till the heat goes all the way to the middle of the sausage... hence we got a cple of sausages which were still ice cold on the middle..\n\nThe only company'), ('Rated 5.0', 'RATED\n  I have been to this place and did try the Chilly pork, which was very yummy and we kept ordering and ordering. The food was tasty and is really filling. For those who love a silent cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© to spend some quality time, Dreams cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© should be your choice. I have been there with my husband and kids, they have enjoyed an nothing can resist us from eating and enjoying the ambience at Dreams CafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©.Good place and definitely recommend the cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82© to the people out in Bangalore.'), ('Rated 5.0', 'RATED\n  gud place, never thought koramangala had such a comfortable cafe to hangout with loved ones and friends...!!!! chilli pork was one of the dish i enjoyed the most..\ncompared to others your price is also reasonable.. !!!'), ('Rated 5.0', 'RATED\n  it was my first visit to the cafe and it was quiet a wonderful experience... the service was also good .... very comfortable place to visit ... my next visit will be with my family.. :-)'), ('Rated 4.5', 'RATED\n  Kept my son 1st year birthday celeb at dreams cafe.... wonderfull place and good food all my guests were very happy ..Would surely recommend this place for all'), ('Rated 5.0', 'RATED\n  Very nice place to visit with friends and family...We had Chinese food and the soup was too delicious liked the crispy potatoes and chicken friedrice . The best is the outdoor seating very comfortable'), ('Rated 4.5', 'RATED\n  The atmosphere inside the cafe was unbelievable. i really like the place, Sausage and pork chilly was too delicious..\n\nwaiting to visit for the next time..'), ('Rated 3.0', "RATED\n  It was an unplanned visit and the experience was quite nice. Really liked the food. We ordered sandwiches, omelettes and hot chocolate. All three were good but I thought the taste of chocolate was a little unauthentic. What I was not so happy with was the service. They took really long to serve the food and later, the bill. But these things can be improved with time. So I'm positive the next time I'll go, I will have a better experience. :)"), ('Rated 4.5', 'RATED\n  Really liked the place you get good English breakfast and i liked the service best is to have the breakfast at outdoor nice seating overall great place'), ('Rated 5.0', 'RATED\n  Really a great place for English breakfast and u get great snacks liked the ambiance,good service, will surely recommend people to try this place'), ('Rated 5.0', 'RATED\n  Very nice place to visit with friends and family...We had Chinese food and the soup was too delicious liked the crispy potatoes and chicken friedrice . The best is the outdoor seating very comfortable'), ('Rated 4.5', 'RATED\n  The atmosphere inside the cafe was unbelievable. i really like the place, Sausage and pork chilly was too delicious..\n\nwaiting to visit for the next time..'), ('Rated 3.0', "RATED\n  It was an unplanned visit and the experience was quite nice. Really liked the food. We ordered sandwiches, omelettes and hot chocolate. All three were good but I thought the taste of chocolate was a little unauthentic. What I was not so happy with was the service. They took really long to serve the food and later, the bill. But these things can be improved with time. So I'm positive the next time I'll go, I will have a better experience. :)"), ('Rated 4.5', 'RATED\n  Really liked the place you get good English breakfast and i liked the service best is to have the breakfast at outdoor nice seating overall great place'), ('Rated 5.0', 'RATED\n  Really a great place for English breakfast and u get great snacks liked the ambiance,good service, will surely recommend people to try this place'), ('Rated 5.0', 'RATED\n  Very nice place to visit with friends and family...We had Chinese food and the soup was too delicious liked the crispy potatoes and chicken friedrice . The best is the outdoor seating very comfortable'), ('Rated 4.5', 'RATED\n  The atmosphere inside the cafe was unbelievable. i really like the place, Sausage and pork chilly was too delicious..\n\nwaiting to visit for the next time..'), ('Rated 3.0', "RATED\n  It was an unplanned visit and the experience was quite nice. Really liked the food. We ordered sandwiches, omelettes and hot chocolate. All three were good but I thought the taste of chocolate was a little unauthentic. What I was not so happy with was the service. They took really long to serve the food and later, the bill. But these things can be improved with time. So I'm positive the next time I'll go, I will have a better experience. :)"), ('Rated 4.5', 'RATED\n  Really liked the place you get good English breakfast and i liked the service best is to have the breakfast at outdoor nice seating overall great place'), ('Rated 5.0', 'RATED\n  Really a great place for English breakfast and u get great snacks liked the ambiance,good service, will surely recommend people to try this place'), ('Rated 5.0', 'RATED\n  Very nice place to visit with friends and family...We had Chinese food and the soup was too delicious liked the crispy potatoes and chicken friedrice . The best is the outdoor seating very comfortable'), ('Rated 4.5', 'RATED\n  The atmosphere inside the cafe was unbelievable. i really like the place, Sausage and pork chilly was too delicious..\n\nwaiting to visit for the next time..'), ('Rated 3.0', "RATED\n  It was an unplanned visit and the experience was quite nice. Really liked the food. We ordered sandwiches, omelettes and hot chocolate. All three were good but I thought the taste of chocolate was a little unauthentic. What I was not so happy with was the service. They took really long to serve the food and later, the bill. But these things can be improved with time. So I'm positive the next time I'll go, I will have a better experience. :)"), ('Rated 4.5', 'RATED\n  Really liked the place you get good English breakfast and i liked the service best is to have the breakfast at outdoor nice seating overall great place'), ('Rated 5.0', 'RATED\n  Really a great place for English breakfast and u get great snacks liked the ambiance,good service, will surely recommend people to try this place'), ('Rated 4.5', 'RATED\n  A lovely place with great ambiance. Really tasty food. English breakfast is a must try... Reasonably priced. Great service, the Owner & his wife are there all the time to personally take care of you. A great place to visit again n again....'), ('Rated 5.0', 'RATED\n  Went to dreams cafe last morning .... the first thing i felt as i entered in was a very homely warm comfortable feeling ... the prices are reasonable and as i dug into my tasty hot English breakfast ... i felt i was in England the English breakfast is a must try and so are the creamy mashed potatoes..gives u the taste of true England .......Along with me my boy friend tried on some early snacks and the crispy  pepper corn is a must sure try... on the whole great ambiance ....great service...and great food..... my advise this place is a must try for all the foodie lovers')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
3.5/5.\nOrdered tangdi biriyani from this outlet.\nQuantity and taste was good.\nIt would be good if you provide even spoon for online orders. ?'), ('Rated 1.0', "RATED\n  Horrible to say the least! What they make is not biriyani, nowhere close to biriyani. It's so bad that you will definitely be mad over it even if you were having a good day!"), ('Rated 2.0', "RATED\n  I trust all the negative reviews..I ordered paneer briyani..They just gave 4 small pieces of paneer and some masala rice..It was not proper briyani.Even that authentic briyani flavour was missing..Won't prefer it again.."), ('Rated 1.0', 'RATED\n  very bad')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       3
Dhadoom at VR has some exciting stuff to taste.The Saucy fries are unique and best in blore.\nMy little cousin freaked out on a Oreo pakoda (pakoda with ice cream). Looks like Macd and Dominos have serious competition')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
Ordered veg fried rice and manchurian, rice was stale and tasted horrible. I would not recommend this place to anyone.'), ('Rated 5.0', 'RATED\n  Very Tasty food...Good service... reasonable price...ambience also very good......varities of biryani kebabs gravies everything tastes great.. must try...'), ('Rated 4.5', 'RATED\n  Ambiences is nice and they are receiving well. Food seems to be continental and place is special for its malabar biriyani.....................................'), ('Rated 5.0', 'RATED\n  Good taste quick delivery ordered veg spring roll ...good service ....................:..........................................fggggggdgdhfh')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6
Worst place to be.\nGood property but worst management.\nBad food, mismanagement.\nNo value for money.\nUncourteous staff.\nThey will say things to woo your trust and later on refuse to what they promised.'), ('Rated 3.0', "RATED\n  We visited this place today evening. It's away from the hustle bustle of the city, in between the woods. My first impression was wow because the place is so green situated in between tall trees. The lower side is that the place feeds mosquitoes more than the customers. They are everywhere and the place is not at all fumigated. It actually ruined our experience and we couldn't sit there for long and had to leave for saving ourselves from mosquito bite."), ('Rated 5.0', 'RATED\n  Its a great experience to step into the EAGLE RIDGE RESORT and dine over there at their restaurant. I have tasted the VEGETARIAN FOOD and it was really good. I would recommend you to visit the resort and taste your favorite food. \n\nThe restaurant is clean and hygienic and suitable for all kinds of people . Youth definitely enjoy the ambience and so will others too.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               2
A place where you will go again and again.\nUSPs - very affordable and filling middle eastern food. The ingredients are fresh and crunchy.\nThey are available for order on zomato and have a little bit of seating space if you want to go personally.\nRecommended - Their falafel roll and fresh juices.\nAnd make it spicy.'), ('Rated 4.0', "RATED\n  Good place for falafel and hummus. They make fresh batches of falafel after you place order which is nice. Don't forget to order orange juice which is amazing. Other dishes like potato wedges and baklava aren't that great but worth visiting for falafels"), ('Rated 4.0', 'RATED\n  We got this delivered to our place.\nThe falafels were so good, would love them again, and please serve a little bit of your dip with the falafels next time. The dip was a little overpriced if we wouldÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve bought it separately and thought it would be a lot more than what we would need, if you could just serve a little bit of the dip, and even increased the price from ?50 to ?65/75for it, I wouldÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve still bought it!\nOtherwise amazing falafels, Greg job!'), ('Rated 4.0', 'RATED\n  This is an amazing place for your hunger pangs and I recommend you to buy their falafel roll which is very good at very reasonable price and do not forget to ask them for extra spiciness.'), ('Rated 4.0', "RATED\n  A New destination in town for Diet Conscious people ? @habibifalafel\n\nBeing foodie it's really tough to manage your lust for food but now at @habibifalafel you can satiate your taste buds with healthy falafal stuffing in burgers, roll and sandwiches.\n\n@habibifalafel is an amazing place with a totally unique cuisine, an Arabian cuisine called Falafel. Its a small outlet with spacious space for quick bites.\n\nHere, I tried a few dishes from their menu and they were stupendous ?\n\nFalafel burger - yummiest - 4/5\n\nFalafel pita pocket - traditional-4/5\n\nHummus plate-4/5(amazing different creammy dip) .\nFalafel balls: 4.5/5 (my favorite)\n\nMint lemonade & pomegranate juice: so refreshing 4.7/5\n@foodiejazz_bangalore"), ('Rated 5.0', 'RATED\n  This place is a definite stop for Arabian dish. Its a small space with only veg food serving. Very well decorated with reasonable pricing. The juices here are freshly made and the food here is completely upto the mark'), ('Rated 4.0', 'RATED\n  First time I have tried something Middle East veg food. And first time I have seen a complete Arabian Veg restaurant. As an experience it is good, tasty and can enjoyable. Ambience is cool. ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a very small restaurant, and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s much more recognisable as a take away. Food is good but little bit dry. Staffs are cool. But I believe need to be little bit more tasty.'), ('Rated 5.0', 'RATED\n  Best Falafel in the town and very good on the pocket. We have tried almost all the options in the menu and they all are good.\n\nI would highly recommend this place if you love falafels.\n\nJust FYI, Car parking is an issue in that area.'), ('Rated 4.0', 'RATED\n  I am big fan of lebanese cuisine and when i got to know about this store, i had decided that i need to drop by. They serve freshly prepared juices and their dishes were really good. We ordered falafel burger and falafel plate and 2 juices. Boy, it was so filling and yum too! Wanted to try their baklava also but was so full already that i kept it pending for later. The best part was it was quite pocket friendly. Menu prices are all inclusive of gst. Staff was trained and co operative. Overall great experience'), ('Rated 5.0', 'RATED\n  Looking for some quick bite of Mediterranean on the run, also which is very affordable, then you are checking the right place:\n\nWe tried their Falafel Pita pocket- Unlimited and Hummus Plate. Both are very affordable and extremely filling. The taste is pretty authentic to the Mediterranean you would expect. They serve you with some unlimited veggies which is really nice. The hummus plate is served with pickles which are very good. You would be full and not leave the place with half stomach from this place.\n\nThe store is not a very big restaurant. They are really good for a quick bite and have high chairs and service is pretty quick and nice.'), ('Rated 4.0', 'RATED\n  These place is the very first stop in the city where you can get an Arabic dish falafel, the place is small but have a wide variety of choices and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s fairly priced for the quantity, One should defiantly try this place out .'), ('Rated 4.0', "RATED\n  3 for taste\n5 for value for money\n\nSmall cute cafe.\n\nI felt the taste was lacking in salt. when they say unlimited it isn't really unlimited because the vegetables they showcase on the counter is very little. So you just end up getting a few florets of cauliflower and few wedges of potato even if you wanted more. Also the baklava was decent not great. If it weren't for the pricing I would have continued to stick to Leon grill's falafels.\n\nBut they have won me over with their pricing."), ('Rated 5.0', "RATED\n  This small outlet opened up a few months back near my place. One of the best falafels I've had! It's just too much for me to finish. If your appetite is like mine, I would recommend sharing. Oh and I'm in love with their fresh fruit juices - especially grape juice. I have never had just one, I always go for a second glass of juice. There isn't a lot of seating space - maybe for about 6 people only, so you can consider takeaway. The staff is very helpful."), ('Rated 3.0', 'RATED\n  Ordered from Habibi Falafel for the first time. Only vegetarian food was available. It was a hummus day I guess. But the bakhlava was not up to the mark.'), ('Rated 4.0', 'RATED\n  Must try place for some good falafel, hummus and pita bread. Falafel was crispy enough, hummus also taste fresh, quantity was also fine. Prices at its best, highly pocket friendly.'), ('Rated 5.0', 'RATED\n  Amazing food at street food prices! You get 4 falafel pieces for 20rs, in a heart shaped bowl. Rest of the menu is great too. Go here and indulge, probably the only authentic Mediterranean place in Bangalore, Fava the other Mediterranean place I know has Indianised their dishes.\n\nThis place is just'), ('Rated 4.0', 'RATED\n  A small, cute fast food outlet that serves great falafels as rolls, burgers and platters... it has been well designed and ambience is very inviting.\nD falafels were very good. Hummus and Pomegranate juice were nice. Baklava wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t all that good. Food is very pocket friendly.\nParking is a problem if u r in a 4 wheeler. Recommend this place if u want 2 have a quick meal of middle eastern cuisine at budget pricing!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!'), ('Rated 5.0', "RATED\n  Fresh and wonderful food. It's simple but great. I've ordered take away and at the store. Having at the store is obviously better, enjoyed all dishes."), ('Rated 5.0', "RATED\n  I've been there more than a dozen of times. I've almost tried everything on their menu except their burgers. Cool & small ambience with extremely courteous staff, serving excellent food. This is always on my list whenever I'm recommending places to my mates. Keep it up. Only thing that this place lacks is they don't have any non-veg stuff. Please include non-veg in your menu."), ('Rated 4.0', "RATED\n  A small place located in Koramangala 1st Block having a seat arrangement of around 10-15 max. \nMight miss the place because of the location but the food taste make it worth to visit.  \n\nIt's a place which only serves vegetarian food. \nThey serve one of the best Falafel plate and roll. Hummus served is also very nice. \nBaklava served is fresh and tasted as per the original taste. \nThe portion served is so huge , that will cover your entire meal. \n\nThey are really doing great job in maintaining the original taste of the food. The price is also reasonable as per the portion served. Parking is a challenge here.  \nCheers for the place..!! \nMust visit place for Hummus and Falafal lovers.  \n\nFood: 4/5\nPrice: 5/5\nAmbience: 4/5\nService: 4/5"), ('Rated 4.0', 'RATED\n  This place is worth every penny spent. Delicious middle east falafels in so many variations. My personal favs are falafel burger, falafel roll and fresh fruits juices. Thier USP is being too hygienic, serving health and taste in one dish in unbelievable reasonable prices. I am sure that this place is my new comfort food store. Must go and try.'), ('Rated 3.0', 'RATED\n  Pocket Friendly!\n\nI did not intend to go here anyway, but happened to hop on as I passed by this place and also it looked quite unique. Middle Eastern cuisine isnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t that interesting to me, so I just picked the first one on their menu which is falafel roll. Unlike other rolls this had ingredients which was uncooked. I did not like it that much, but the quantity is definitely worth the money. And itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a pure veg place!')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
Pack of combo are good, but they should improve on taste of the biryani, even the rice looks half boiled and is very dry to eat...disappointing'), ('Rated 3.0', 'RATED\n  Food not worth rating more than 2.5 delivery is express. Not a popular place to hangout if you are a foodie so, I started avoiding ordering from and going to this restaurant.'), ('Rated 1.0', 'RATED\n  Poor quality biryanis. half boiled rice, inadequate portions and bluff master. Ordered jumbo biryani. It was mentioned 4 piece of chicken with 1 kg rice. they hardly provided 300 gms of rice. It was supposed to be for two person. Hardly one could eat that. packaging was in poor quality aluminium packets and without salan. Charged 300 bucks for this non sense.'), ('Rated 1.0', 'RATED\n  very less quantity'), ('Rated 3.0', 'RATED\n  Food was not hot and vegetable biryani was not added with all vegetables. It was not spicy, rice quality should have been better. Hope it helps.'), ('Rated 1.0', 'RATED\n  I am extremely disappointed by the quality and quantity served. It looks like because zomato is giving 25% discount, you are reducing the quantity served also by that amount. Quantity served is less than what it used to be for family pack and also looks like the quantity served in seenkh kebab was reduced by half.  and please do not send aam sharbat or nimbu paani, these are of sub standard quality, I can make better sweet nimbu sharbat at home.'), ('Rated 3.0', 'RATED\n  Paid Rs232/- but received bill of Rs193/- Pack Of Gulab Jamun was missing. Not sure whether the amount will be reversed and credited in my account.'), ('Rated 1.0', 'RATED\n  Ordered online "Mutton Biryani". Taste is very ordinary (Rice got flavor but mutton didn\'t get spices).\n\nToo much oil in Biryani, had to throw biryani in dustbin (Just imagine quantity of oil).\n\nAvoid this atleast for Mutton Biryani.\n\nDeliver was before time.'), ('Rated 1.0', 'RATED\n  too much oily and spicy food.kema biryani is not like this. Atleast reduce oil.'), ('Rated 4.5', "RATED\n  The packaging is very nice for home delivery, The tasty Guntur Chiken Biriyani is a must try.\n@Ammi's: Please add tissue papers in the box as well. :)"), ('Rated 5.0', 'RATED\n  Awesome biriyani.\nIts taste is like how my mom prepares it\nEvery time I order biriyani from Ammis biriyani.\nEverything is awesome.\nThe taste .The delivery time .The executive who helped me in change in address everything was disciplined and well-mannered.'), ('Rated 2.0', "RATED\n  Pathetic delivery service.We placed order for a chicken biriyani and the delivery guy wasn't picking my call and they weren't responding..Really bad"), ('Rated 5.0', 'RATED\n  Good service was ontime packing was excellent even taste was upto the mark enjoyed delicious food with my hubby .The quantity was little less for one person .'), ('Rated 1.0', 'RATED\n  Worst & stale food till date, low quantity, low grade quality\n\nWaste of money, worst food, very low in quality & quantity as well. Only packaging is okay otherwise road side food is much better than this.'), ('Rated 3.5', 'RATED\n  I have almost tried all the biryani places around my house- literally. My stomach resists it later but I still would go for it any day! Something about the spice balance and the rice cooked nicely.. Ordered twice and both the times, the same flavor!'), ('Rated 1.0', "RATED\n  Food takes one and a hour to deliver....and don't be surprised if it is cold!!! Ordered biryani from here a couple of times....it tastes different everytime"), ('Rated 1.0', 'RATED\n  Waste of money and time. No quantity no quality. Only the box is big!. Ordered from shop near ragondanhalli. Suggest trying from other restaurant.'), ('Rated 3.5', 'RATED\n  A very typical ammis biryani... no thrills... u get what u ordered for. But definitely not sumthn il consider for a hungover Saturday afternoon.'), ('Rated 4.0', "RATED\n  I usually order home delivery from this place, and never ever they disappointed us. Amazing Biryani, especially the Veg option is also good, as my dad(vegetarian) is fan of their's Biryani.\nNicely packed and amazing flavours. High on recommendation for Biryani lovers."), ('Rated 2.0', "RATED\n  You could never find all the food options available in this particular outlet. The staff here is always clueless and the biryani is not good. I've tried Ammi's biryani before but I don't know why i always feel that this outlet gives away the worst load. I would suggest that you rather go to Hyderabadi Biryani which on the opposite side of the road."), ('Rated 1.5', 'RATED\n  taste and condition of the biryani was very bad. When delivered biryani was totally not hot. And taste was also not that much good. Achaari aloo was good in taste but not hot. overall not recommend.'), ('Rated 3.0', 'RATED\n  Ordered a Thalassery Biriyani last day. Actually this is not how the famous Thalassery Biriyani tastes like, But to be very frank it was really delicious. The outlet is a small one with 3 tables but looks okay. Quick service and the packing was also good.'), ('Rated 2.0', "RATED\n  I think the main reason Ammi's Biryani survive is because there are no other major biryani restaurants who do such wider home delivery across bangalore like they do and have so many outlets. Unfortunately with all required infrastructure in place , their quality of food leaves a lot to be desired.\n\nWhen they had launched the Thalassery Biryani , I ordered it once and it was really good. I was impressed so much that I ordered it again and then it turned out to be horrible. Ghee, Masala all were uneven and it even seemed not freshly made the same day. After that terrible experience, I have not tried Ammi's biryani again.\n\nGreat idea for a biryani delivery franchise but poor execution !"), ('Rated 1.0', 'RATED\n  Horrible service. Left me with no dinner tonite. Said they would take 2 hrs to deliver only to tell me that they cannot deliver after almost 3 hrs of placing the order.'), ('Rated 3.5', 'RATED\n  Tried a few times and pleasant experience as well. Their service and packing are outstanding. Food tastes ok but not offers a consistent taste :). Their Guntur Kebab is too good!!!'), ('Rated 3.0', 'RATED\n  Tried veg biryani couple of times. Its just ok. Nothing GREAT. Aroma of rice in biryani seems to have lost. It was not much spicy(i like less spicy food).\n\nFor parcel: Their packing was good. For dine in, outlet is clumsy and because of wash basin inside sitting hall some insects and mosquitos were there. AC was running properly.'), ('Rated 3.5', "RATED\n  Mixed opinion about this place...ordered their biriyani a couple of times,and the taste is not similar most times... At times it has been lil bit on the oily and spicy side,at other time light and flavourful..not that i did not like it much,i did like it,but lil unsure how it would be the next time. Although quantity wise it's fine and yes their packaging is also good."), ('Rated 1.0', "RATED\n  I don't know if the reviews written praising the quality are genuine or not (sorry, if I'm hurting any one, it's just an expression not to demean any one). For the first time in my life, I've seen a restaurant which delivers Chicken Biryani with Chutney that is supplied with breakfast! Ordered once and never looked back to order again. I would not eat their Biryani even if offered for free, literally. No spicy, no authentic taste of biryani, served with breakfast chutney, I would rate this zero."), ('Rated 3.5', "RATED\n  Ordered biriyani from Ammi's today for the first time. It was a good experience. We ordered veg and chicken biriyani, both were decent. Their delivery service and packing deserve a full score. Quantity could have been more."), ('Rated 3.0', 'RATED\n  It was the First order. Experience was good, Food got delivered as expected without any delays. Food was very nice but i felt the quantity was very less.'), ('Rated 2.5', "RATED\n  Had Chicken biriyani more than twice , but the taste was totally different every time . Content was ok but the gravy items doesn't suits well .\n\nAmbiances - 2/5\nTaste - 2/5\nServices - 3/5\nValue for money - 3/5\nParking - 2/5"), ('Rated 2.5', "RATED\n  In ammi's I like the service. Service is at its best. But the problem is non availability of the enough veg biryani, they have limited good and that too they bring it from the there kitchen which is located some where. Usually you have to visit the ammi's for early lunch or dinner or else you will not get the veg food.\n\nComing to the food, biryani is good and tastier. They operate in limited menu."), ('Rated 3.5', 'RATED\n  In the two times I have ordered from this place, I have always received excellent service. Though today is Diwali, the order still came in at one hour.\nTheir chicken biriyani is pretty good, the Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¹199 plate is enough for two people. The kababs are as usual, standard.I am yet to try the continental dishes they have launched.\nOn an overall I like their food both In terms of quality and quantity. Keep it up you guys.'), ('Rated 2.0', 'RATED\n  Was really disappointed since Ammis have removed Harimirch Biriyani from their menu. This was the only dish i usually ordered frequently from them. Since this is removed, I would never order again from them.'), ('Rated 3.5', 'RATED\n  Have ordered biryani a couple of times from this place. The packaging is excellent I must say, they also give a mini disposable box for throwing of bones. The biryani is decent and comes at a decent price. Quantity is just right. There is a lot if scope for improvement in the delivery time though.'), ('Rated 1.0', 'RATED\n  This outlet of Ammis is the worst In whole bangalore. Staffs are completely unprofessional and i never satisfied with the biryanis available there. Last time i got chicken biryani instead of mutton biryani as i paid for mutton. Unfortunately there is no response from these guys. And of course u will not get that aroma of biryani ovr here. Tasteless and the quality is like a cheap street side biryani. Yuck.. I got fried rotten chicken biryani instead of dum mutton biryani. Dont go for this outlet.'), ('Rated 3.5', 'RATED\n  Have made home delivery orders twice from this place and I have to say I had a really good experience with respect to their packaging - Everything packed neatly in separate sealed containers, a small use and throw cardboard trash can, a plastic sipper for the juice, etc.\n\nThe Executive Biriyani combos are compact and is a good option for a meal for 1 rather than going for a Biriyani as such. I tried the Murgh executive biriyani combo in which the Murgh chicken was extremely oily (Management, please look into this) and the biriyani was good, though not great. This combo comes along with lime juice which was up to standards.'), ('Rated 5.0', "RATED\n  i know these people are amazing with their foo. But i need to add this feedback about their service, after a very long tiring day a friend and me dropped to their shop and ordered for our food. We requested them that we haven't had a chance to eat anything since morning and if they can hurry. and the person said he would try his best and would get it in 10 mins, and you wont believe when he walked out with the food just after 5 mins !! thank u guys. we appreciate this gesture :)"), ('Rated 1.0', 'RATED\n  one uselsess branch... utter waste... they deliverd me wrong order.. i ordered for two paneer kalimirch.. the manager called me and said he has only one in stock and he will send me one paneer kalimirch and one achari alooo.. but he has send me both achari alooo.. and almost for one and a half hours that idiot manager made me wait and first of all i dont even understand what he is speaking... he is one useless.. and ammis u guys are loosing ur quality and customer service.. this is the third time i am facing such issues with varthur branch.. hate it and am never gonna  order anymore with ammis and as far as i can am gonna only spread a negative word of mouth about u guys..  u guys have pushed a loyal customer to this extent...\n\nthecrumbstashdeepa.blogspot.com'), ('Rated 2.0', "RATED\n  I had high hopes because I had heard from. Friends that the biryani that is been served there is really great. But unfortunately it wasn't as expected. Biryani was hot but the rice was not that soft. Guess they freeze the biryani and then heat it in oven and server. That might be the reason I did not like the texture of rice. However it was just a experience to have biryani there. Will try there once again just to try my luck."), ('Rated 1.0', "RATED\n  Had a terrible experiance got a piece of stone in biryani and when contacted they put my call on hold for 5 min\nDon't order from here because hygiene is very questionable"), ('Rated 3.5', "RATED\n  Ordered from Ammi's when they were offering the Haleem during Ramzan week. Haleem was awesome! The Biriyani however, was just ok - have had much better stuff! I wanted the Hari-Mirch Biriyani, which they did not have. Ordered the Murg Zeera Samba instead, and a Hyderabadi chicken option. The accompaniments - especially the dessert (meant to be phirni I believe) was very very sweet - couldn't have it. The Salan was not nice either. \nService wise - decent, delivered within 60 mins as promised.\nSo yeah - don't think I'm going to have Biriyani from Ammi's again, unless I am left with no choice. But Haleem - will definitely order it one last time, before they take it off their menu :)"), ('Rated 1.0', "RATED\n  Ammi's Biryani you had be running to a doctor. The haleem I ordered this afternoon was promptly delivered, only it was rotten - proper rotten. Withing 15 minutes of the delivery and tasting the rotten stuff delivered, I did what any civilized person would do - call customer care and inform them. It took 3 hours for someone to call back and offer to send someone to collect the boxes of haleem from me so they 'could track the batch number'. Have not heard from them since. Since i saw no attempt to 'track the batch number', I would like to know how have you ensured no more of your rotten muck has been delivered to other people?"), ('Rated 4.5', "RATED\n  Taste of all types of biryani,allo achari\nand service was very good and it's worthy for money.\nI and my room mates tried almost all tyPes of biryani\nOnly thing is delivery service is somewhat slow.\nWill visit again and again."), ('Rated 1.0', 'RATED\n  Very bad experience,I went to Ammis on 07.07.15 to take a parcel,I asked the server what u have special in Mutton,he said Mutton Hyderabadi..I asked him to make it dry as I thought its a gravy item,I asked him do you have paratha he said no,so I bought paratha from outside to have it with my mutton dish.\nWhen I came back home and opened the parcel I found its a biriyani.\nTrully not satisfied with the miscommunication.\nI informed Mr.Manju(Manager-9731035976) regarding this,trully disappointed.\nI often take home delivery but now I have to think twice.'), ('Rated 1.0', 'RATED\n  I went to Ammis on Tuesday and asked the server that what special you have in Mutton,He replied Mutton Hyderabadi.\nI told him to make it dry as I thought its a gravy item,while I opened the parcel I founf its a Biriyani,trully not satisfied with the miscommunication'), ('Rated 1.0', 'RATED\n  Ordered Guntur Chicken , Chicken Haleem and Aam sharbat.\nNothing was upto the mark.\nChicken Haleem was the worst part. It was bland. Had to throw it away.\nAam sharbat looked like was prepared using some powdered packet and had no taste at all.\nVery bad experience. Would suggest people to skip this chain of restaurants.'), ('Rated 4.5', 'RATED\n  I live in Whitefield and like your mutton biryani that i ordered a couple of times. Delivery were always on time, and this is so important to me.  Looking forward to having more family and office getogethers, and with ammis supplementing my other home cooked foods.'), ('Rated 5.0', 'RATED\n  Ammis biriyani for office lunch or team outing is an excellent choice. the food is great and delicately spiced which is great for foreigners as well! they love the biriyani every time we order. The orders are also very prompt.'), ('Rated 3.0', 'RATED\n  We have ordered couple of times for home delivery. Delivery is quick and prompt. Only area of improvement is the Biryani quantity even if you just order Biryani they give you the order like a combo with sweet which is awful. The mirchi salan is oily and more like tomato paste. Pl start offering just Biryani and provide authentic mirchi ka salan.'), ('Rated 1.0', 'RATED\n  Hi Ammis.Really im very very disappointed day for yesterday. I order 2 to 3 people that is a IPL Offer mutton biryani.I was place the order at 6.07pm there are informed me that it will take another 45mins time to reache my gate but my order was reached at 7.45pm then i cancelled my order this is not fair outlet for home delivery i like show that red flag.'), ('Rated 4.5', "RATED\n  OMG what can i say yummy, yummy, yummy, thanks to Ammi s Biryani for making me recollect my memories of the Biryani i used to have in Hyderabad. i have tasted each and every biryani corner in Bangalore trying to get that taste of original Hyderabadi Biryani,\nfinally got the original,\nthis Place was insisted by a friend of mine, i m a vegetarian and i ordered a veg Biryani, the quality of rice and the taste was impeccable.\nPlease try this place once, i m sure you will enjoy the treat.\none more thing i would like to add is the Ambience at Ammi's Biryani is very neat and clean, not over crowded, all in all a good place to hang out."), ('Rated 1.0', "RATED\n  Hey Guys, Just now got Ammis Sabzi Biryani and Achari Aloo as a takeaway order. Guess what! It's stale. Both biryani and the side dish... Really disappointed!!!!"), ('Rated 3.0', 'RATED\n  I ordered from this place during my stay at Whitefield. The Biryani was a liÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99l spicy for my taste but I loved the mutton biryani for its flavours and the perfectly cooked mutton. I am not a mutton fan bt I could eat this biryani. If you are having some biryani craving, this place is certainly not going to disappoint you, at all.'), ('Rated 1.0', 'RATED\n  One word ! " Chaos "\nToo spicy and everything is filled with elaichi ! I rarely order from here ... And when I do ... I regret after having the food ! I suggest foodies to explore other options and please keep Ammi\'s as a last resort .'), ('Rated 3.0', "RATED\n  Well if you are looking for a place to fill your biryani craving or you are just starving for a meal that won't disappoint you, then this a right place. Biryani here is good but you shouldn't expect too much. This place has its unique style and taste so don't look at it for replacement to any other biryani place. New takeaway packing is very good and thoughtful. And they have lot of other things to offer apart from just biryani. Toh Kuch Accha Khao!"), ('Rated 4.0', 'RATED\n  Just d right place for just the right biryani ....want a delivery n ull get it in a good packing box with all the needs ....never have eaten at their place but the chicken biryani is just as simple as u want it ....nothing extra special but the normal n tasty fashion'), ('Rated 4.5', "RATED\n  Excellent biryani .. Just go for it..\nRecently me and my friend ordered biryani from Ammi's it was very good in taste never had such tasty biryani in Bangalore.."), ('Rated 3.5', 'RATED\n  this could be so much better. Underwhelming taste, mediocre ambiance, they need to get their game up if they want to stay relevant with the competition around. Biryani zone is only a mile away if u are very particular about taste.\n\ninstagram.com'), ('Rated 3.0', 'RATED\n  To me, the Biriyani here is not as good as elsewhere. But the packing and delivery are good. The sides, as they call it - aloo masala and a few chicken dishes are ok (low quantity , low priced). I would choose this only if I have to take away something quickly. No other Biriyani restaurants do the packing so well. Packing - 4.5 Rest - 2.5'), ('Rated 3.0', "RATED\n  Not a fan of Biryani, but since I had no option I thought to try the Chicken Executive Biryani + Guntur Kebab combo at Ammi's Biryani. Overall pretty decent biryani with one piece of succulent chicken. The two guntur kebab servings were also mildly spiced. The raita portion could have been more. Overall decent food experience at 130 rs."), ('Rated 3.5', 'RATED\n  Good Biryani to take away! Reasonably priced'), ('Rated 1.5', "RATED\n  Coming from Kerala, I hopped in for a quick spicy hyderabadi biriyani. The service was prompt. Served me in 2.5 minutes. However the food was way below average.\nFirstly the rice was bland, the chicken was lifeless and for something that was named 'hyderabadi', it did not have any authenticity. The salad was mere water and yoghurt.\nOverall, one of the worst biriyanis I have ever encountered.\nAnd to make things worse, there were a lot of insects on the floor. So thumbs down on the hygiene part too.\nAvoid the place, unless desperate. Cheers!"), ('Rated 3.5', "RATED\n  The taste is very good. It's better to order than to go for dining because the space for dining is small. I had mutton Shadi biriyani... taste is good but pieces are less and that too they are bones!"), ('Rated 2.5', 'RATED\n  Though biriyani is not one of the dishes I look forward to, I still ordered for a home delivery for a chicken biriyani and kebab from AmmiÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s. They are prompt in taking the order and the delivery was also well in time. The packing was nicely done. You get raita, salan and a sweet along with the biriyani. The biriyani tasted good but the sweet was very average. The kebabs were too spicy and oily. You will get the taste of mostly the black peppers and nutmeg. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s taste was just average. Can be tried once if you are a biriyani lover.\n\nipsitafoodjournal.blogspot.com'), ('Rated 3.0', "RATED\n  Needs to buck up.\n\nThis place used to be good an year back.\nBut now it is not the best place to order from.\nThe chicken biryani's rice was not well cooked and had excessive masala in one portion rendering that portion inedible.\nThe chicken was not great either as it was partially uncooked.\n\nI would definitely think again before ordering from here, hereafter.\n\nFood-2.5\nService-3.5\nOverall-3"), ('Rated 3.5', "RATED\n  Ammi's Biriyani has became one of my favorite food place for biriyani. The Biriyani taste great in a reasonable price. I am ordering once in every two weeks from here.\n\nThe mutton biryani was one of the best I had in Bangalore till date. Rice was rightly spiced and the meat just fell off the bones :) I didn't like the sweet though :(\n\nThe packaging was excellent. Raita quality can be improved. Overall, value for money :)"), ('Rated 2.0', 'RATED\n  Ammi Biryani , it seems has lost all its charm and reputation of being one of the best Biryani options in Bangalore over the period of time.\n\nThough they have advanced technologically, but the quality of food has gone down drastically.\nThe essence of biryani seems to be nowhere found in its biryani.\n\nMy pick from its menu used to be Zeera Samba and Hyderabadi style Chicken and Muttion Biryani earlier.\nBut now when we ordered from here, it was a utter disappointment and a personal loss of face for me as I suggested it to my team mates.\n\nThe biryani rice lacked the chicken / mutton flavored juice and the portioning was not up to the mark.\n\nI would never order nor recommend this biryani to any one in future.\n\nMy rating\nFood 2/5\nService 3/5\nOverall 2/5\n\nthefoodietales.com'), ('Rated 3.0', 'RATED\n  Good biriyani varieties must try this zebra and shaadi biriyani'), ('Rated 1.0', 'RATED\n  Very poor quality. I will never try again.'), ('Rated 1.0', 'RATED\n  Not up to mark. Have been here multiple time. Everytime i just hoped that I ll have a better experience. I have been dissapointed all the time. Food quality is poor. Mutton biryani in particular didnt look fresh. Experience was disastrous.'), ('Rated 1.5', 'RATED\n  i was a great fan.. but when i ordered last time it was a great surprise that they have changed the rice quality.....it was the worst biryani i ever had ...rice quality was a disaster'), ('Rated 3.0', 'RATED\n  Ordered their Gosht Hyderabadi Biryani 3 plates, and the parcel was delivered an hour late, presumably the delivery guy got lost and was not able to locate our ofice. Strange as our office is in one of the primest office spaces in Whitefield.\n\nAnyways the biryani was very tasty and so not rating them so low due to their pathetic delivery time lines.'), ('Rated 3.0', "RATED\n  Ammi's biryani was yet another stop in my quest to eat the best Chicken Biryani that Bangalore has to offer.\n\nIt was moderately surprising that I haven't ever noticed this chain of restaurants despite their decent presence across the city.\n\nSo, on a weekday for lunch I tried their chicken combo which had chicken biryani, mirch ka salan, onion raitha, chicken starters and a gravy (from as much as i can remember). Their chicken biryani was fairly good. It's definitely worth trying and value for money if you're looking to try a different option for your work lunch.\n\nWill I try them again? Yes."), ('Rated 1.0', 'RATED\n  Have ordered recently from this place ..\nGosht Hyderabadi Biryani was average, & too less portion, Gosht biryani had 3 small pieces of mutton ( all bones, lessssss Gosht ). They served biryani with raita, salan and one small portion of kheer.\nIf you are a Biriyani lover like me, this place may disappoint you.\n\nBut must say the way d food was packed was awesome and loved it. Had made online order on their website and they called within 5mins confirming the order. Delivered in 15mins. Service was great.'), ('Rated 4.0', 'RATED\n  Quite nice Biryanis, Ammi Biryani and the parcel that they provide is very nice for office lunches and if you want to order a couple of biryanis, the best part is that they provide a bit of sweet and that gets you a satisfactory ending.\nThe price also is quite decent for someone who wants to have biryani a couple of times in the week.'), ('Rated 4.0', "RATED\n  I ordered a Gosht Hyderabadi Biriyani which came with 3 pcs of mutton, biriyani (basmati), raita, mirchi ka salan & meetha (kheer). The bill was Rs 201/- all inclusive.\n\nThe mutton biryani was one of the best I had in Bangalore till date. Rice was rightly spiced and the meat just fell off the bones. I didn't like the mirchi ka salan but that does not mean that you won't. I was expecting the salan to have some pepper which was missing and actually tasted a bit odd. Kheer was ok and raita quantity was pretty less.\n\nThe packaging was excellent. I am thinking about ordering the same as office lunch someday.\n\nFinal Verdict:\n\nTaste: 9/10\nValue for money: 8/10\nPackaging (for home delivery/take away): 9/10\nDelivery Speed: 10/10 (less than 40 mins to Kadugodi)\n\nSuggestions:\n1. Update your menu at zomato\n2. Add some mouth freshner in your package\n3. Increase raita quantity"), ('Rated 4.0', 'RATED\n  Awesome packaging and taste.. only issue was with the delivery executive who sounded rude and was not willing to come to my place to deliver it.'), ('Rated 4.5', "RATED\n  Today my cook didn't come and I was very hungry. I and my flat mates didn't know how to cook, except for Maggi or boiling eggs. But that would not have been enough after a day of toiling hard at our workplace. So, we opened Zomato and like Mozart in disguise, this restaurant came up in the search results. We thought it was a little expensive for a usual weekday dinner, but when we ate it, we were really glad to have ordered from it. It had good supplements in terms of Raitha, Salan and Sweet, each things better than the rest. It was really a wonderful experience to have this Biryani place in delivery distance from our house. The delivery was prompt and we paid using our useless Sodexo meal coupons. So, all in all, it was a remarkably nice experience and I am going to sleep a happy and content man. Way to to Ammi's and way to go Zomato for bringing all of us together."), ('Rated 4.0', 'RATED\n  Great place to have wonderful biriyani. Specializes mostly in Hyderabadi Biriyani and provides great taste to all its dishes. The tender chicken in the biriyani is so juicy, soft and tasty. Wil make one to come here again.\n\nPrices too are nominal here. This place is good for a quick lunch.. Well, there is waiting period to get served. The ambiance is not that great and it looks like a fast food joint. The place is small and crowded with usually very little leg room. You might need to wait quite some time to get a seat inside.\n\nThey even have take aways and home delivery. Sodexo meal passes are also accepted and this is very good.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
A budget friendly lunch mess in jayanagar 3rd block. Food is cheap, north indian veg chapatti n rice meals is available. The place is too small n very conjusted. Give it a try if you crave for plain homemade north indian food.'), ('Rated 1.0', "RATED\n  STALE PARATHAS! How could you sell ALOO PARATHAS without Aloo? The place is not really clean and has odd smell at times.\nPlease stop being selfish and start adding MAIN INGREDIENTS to your menu. It's a NON-SELFISH request."), ('Rated 4.0', "RATED\n  I'm frequent visitor to this place... The food is quite tasty and homely... You can try there Parathas it's very authentic and tasty.... Though the place is small.... But one can enjoy good and tasty food here"), ('Rated 4.0', "RATED\n  Having frequented this place several times is a proof of my taste buds either being lucky every time or this place is consistent with delivering lovely parathas and lassi... Anyway, I've been satiated with good awesome food here.. Burrrrrp !!"), ('Rated 3.5', "RATED\n  This is a no frills place that can still packs a punch with service that is super fast.\n\nThe name says it all. They specialise in parathas and also serve thali's and jeera rice, fried rice etc.\n\nTried a thali with three phulkas, dal, roti and. A subji\n\nI was looking for a simple quick mela and got exclusive that.\nFantastic value for money.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2
This is probably one of the best Poha i have ever had, They have a number of varieties of Poha to choose from and taste is also really very good. Will recommend this place'), ('Rated 5.0', "RATED\n  Their poha are very nice in taste... I would suggest to eat hot only... Bdw keep it up guys. Don't make any changes. A little bit lemon in poha would be an added advantage."), ('Rated 5.0', 'RATED\n  I had ordered paneer bhurji poha and the packing was really in a nice way.. It was so tasty and yummmmmm.... I would really recommend to try paneer bhurji poha.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             4
Their boozy milkshakes are.. wait for it.. legendary. A clever weave of ice cream and daaru.. a clever food menu too. A classic old school American diner styles space.. and with arcade gaming machines too.'), ('Rated 2.0', "RATED\n  It was one of the worst experiences we had, visiting BabaYaga's. We were seated on the terrace. The music was too loud and the speakers made it garish.\nNobody came forward to take our order for about 45 minutes of us being seated there, in spite of visiting on a weekday and not a busy weekend.\nWe ordered cheese onion rings, a rice bowl called 'The wall' and a ricotta and spinach lasagna. The onion rings were so tasteless, with no seasoning and hardly any cheese. They tasted like badly made onion pakodas. The rice bowl was better, with Mexican rice and plenty of toppings. The lasagna, however was awful. There was hardly any ricotta, it had sparsely sprinkled mozzarella on the top and it was overall just a goopy mess. There was pasta water at the bottom of the dish. It was absolutely enedible.\nFor dessert we had ordered the toffee pudding with custard. It tasted the best of the lot, but it was too sweet."), ('Rated 4.0', 'RATED\n  A diner-style eatery with the usual suspects of fried fish, burgers and the like. Made more interesting by the addition of arcade video games and foosball tables. Quick service and reasonable quality make this quite popular with youngsters. Could be good for families as well.'), ('Rated 1.0', 'RATED\n  We had a worst experience at this place by Drinking their so called LIQUORs!!\n\nAlcohol what they are serving is completely diluted.\n\nWe were 4 and tried 10 large pegs of Old Monk, 4 large pegs of whiskey and there after again 3 Long Island Iced Teas!!\n\nTo be frank all of their liquors were damn DILUTED!!!\n\nNever had this worse LIITs in our entire drinking life!!\n\n\nWORST PLACE FOR DRINKING IN BANGALORE!!!'), ('Rated 4.0', "RATED\n  A place that looks like a British diner and a gaming arcade both! What more could you ask. First of all, it's located in such a bomb street in Indiranagar, the crowd has to be good here. The food menu is sort of restricted to appetizers more and that's all right actually. They always have offers going on the drinks and they have Zomato gold too, so the place definitely feels like a steal. The ambience is the best part about this place, it will charge you up instantly. The only problem here is the service, which is damn slow. I hope they do something about it pretty soon."), ('Rated 5.0', "RATED\n  A retro-like diner with contemporary charm, BabaYaga's is definitely on my list of favourite places in the city. The boozy milkshakes looked so absolutely delicious, which is why I had to try more than the one. I like the fact that they have old-school arcade games to entertain diners. The food, drink options, and music selection are all good here, another tick on my check list of essentials for a good night out."), ('Rated 3.0', 'RATED\n  Very Innovative concept of installing arcade machines. This makes the place unique. The food is a little expensive but good at taste. A lot of basic items like fries were out of stock when we had gone.'), ('Rated 4.0', "RATED\n  Baba Yaga's is a quick American finger food diner with large variety of alcoholic drinks. What makes this place engaging are various arcade games, fussball table and the music from 80s and 90s. A perfect place to spend time with old friends and to feel nostalgic. The food is served quickly. Don't miss the potpie here which is the most delicious dish on the menu. If you order the Nacho's mention to serve the ones with less spices. They also serve spike shakes but not everyone may enjoy the same. Ignore the quality of pics since we were sitting right next to the glow sign board"), ('Rated 4.0', "RATED\n  All in all a good place to go have a drink in Indiranagar.\n\nI was here during lunchtime and I found the ambience very quirky. They have instagram-worthy walls. They also have some arcade games and foosball.\n\nService was great. Music was good. Food was okay. Drinks are decent and priced like any pub in and around the area. If you have Zomato gold, then it's great.\n\nI recommend this place if you'd like to have a chilled out lunch in Indiranagar. I totally want to check it out at night next time."), ('Rated 3.0', "RATED\n  Not an extremely awesome place. I had expected a better ambience but this place looks like a wannabe sports bar. It has foosball and a few arcade games but nothing great.\n\nFood wise it's pretty average, so are the drinks. Location of this place is a perfect 5 though. Situated right beside humming tree, the only big problem with this place is that they don't have a decent sign board advertising their presence. We actually had to call them up to figure out where the place is.\n\nAmongst food items, we ordered the boneless Asian chicken (forgot the name) and a few veg starters. Most of the items were a bit on the saltier side. Also serving fries took a hell lot of time.\n\nAmongst drinks, we tried liit, cosmopolitan and both were decent. They did not seen to have most of the beers listed on their menu though which kind of was annoying. I would overall rate this place a 3 or 3.5.\n\nPS - Desserts are good"), ('Rated 4.0', 'RATED\n  Wing, wings and wings loads of perfectly crafted wings and good food. In love with the wings here. Must try peri peri and garlic wings. The food is good as it gets. Amazing offers and the entire menu is pocket friendly. Overall great experience. Do recommend a visit.'), ('Rated 4.0', "RATED\n  After the hassle at 1131 bar and kitchen, we came to this place to celebrate new year's eve. We got a place to sit and enjoy. The staff was good. But we did not like the food much. Although the food looks good but somewhere the taste was not upto the mark. I will give 4 stars only for their staff and ambience. For food, i would give 3. Their disco burger was really bad. But their desserts were good, so i would overall give 4 stars"), ('Rated 4.0', 'RATED\n  Went on a Wednesday night when 1+1 is on offer on their wings and select drinks, all day long! Tried the Peri Peri Chicken Wings and the Chilli Garlic Wings. The Chilli Garlic Wings were good but the Peri Peri Chicken Wings were simply outstanding. Peri Peri Chicken Wings is a definite must-try.\n\nTheir cocktails too were pretty damn good.\n\nSpecial mentions:\n\nLong Island Iced Tea\nWhiskey Sour\nMai Tai\nSangria (Red wine)\n\nOn Wednesdays, you can enjoy 1+1 on all the above drinks. Hic!'), ('Rated 5.0', 'RATED\n  We had been here on a Wednesday night, they had 1+1 on wings we tried all 8 kinds of wings they had. I liked their peri peri wings. We tried few other things on their menu, everything tasted good.'), ('Rated 2.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s new, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s loud and itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s got arcade games (a few). But letÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s look at the basics - the food. After all this is zomato right. Well the food is alright. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s junk, a la truffles + some alcohol.\n\nThey have the same old fare - burgers, fries, nachos, sandwiches... blah blah! Another one of those high calorie menus thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s rampant around Bangalore.\n\nGo there to check the box. Nothing special - not the food, not the concept.'), ('Rated 4.0', 'RATED\n  So retro and chill! I love the vibes of the play. Big win on the arcade games. The food is pretty good and value for money. Liquor milkshakes seem interesting, yet to try them. Overall, must visit the place. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice place to spend some time.'), ('Rated 4.0', 'RATED\n  I had seen this place come up on top of Mamagoto and being a fan of American food, wanted to check this place out. And I did so, one fine evening and enjoyed my experience!\n\nThe place has retro vibes with arcade games, foot tapping music and obviously some great food. They are the first ones to have introduced boozy shakes and I must tell you, they are awesome! Totally loved the chicken wings and the burgers.\n\nOverall, a nice place to unwind, and hangout with your loved ones!\n\nCheers!\n\nthefatummy.wordpress.com'), ('Rated 4.0', 'RATED\n  Pretty decent place, liked the ambiance. Peri peri chicken wings, cheese chilli potato fries and salted caramel shake was yummmm. Would definitely recommend this place.'), ('Rated 3.0', 'RATED\n  I really wanted to like this place because of the fun American diner decor and the arcade games. But the food was just not up to the mark. Masala fries and milkshakes were good enough. But the prawn and chicken dishes we ordered were quite bland. Greek salad was pretty standard. The place was suspiciously quiet on a Sunday afternoon when it should have been full.'), ('Rated 2.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s new, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s loud and itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s got arcade games (a few). But letÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s look at the basics - the food. After all this is zomato right. Well the food is alright. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s junk, a la truffles + some alcohol.\n\nThey have the same old fare - burgers, fries, nachos, sandwiches... blah blah! Another one of those high calorie menus thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s rampant around Bangalore.\n\nGo there to check the box. Nothing special - not the food, not the concept.'), ('Rated 4.0', 'RATED\n  So retro and chill! I love the vibes of the play. Big win on the arcade games. The food is pretty good and value for money. Liquor milkshakes seem interesting, yet to try them. Overall, must visit the place. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice place to spend some time.'), ('Rated 4.0', 'RATED\n  I had seen this place come up on top of Mamagoto and being a fan of American food, wanted to check this place out. And I did so, one fine evening and enjoyed my experience!\n\nThe place has retro vibes with arcade games, foot tapping music and obviously some great food. They are the first ones to have introduced boozy shakes and I must tell you, they are awesome! Totally loved the chicken wings and the burgers.\n\nOverall, a nice place to unwind, and hangout with your loved ones!\n\nCheers!\n\nthefatummy.wordpress.com'), ('Rated 4.0', 'RATED\n  Pretty decent place, liked the ambiance. Peri peri chicken wings, cheese chilli potato fries and salted caramel shake was yummmm. Would definitely recommend this place.'), ('Rated 3.0', 'RATED\n  I really wanted to like this place because of the fun American diner decor and the arcade games. But the food was just not up to the mark. Masala fries and milkshakes were good enough. But the prawn and chicken dishes we ordered were quite bland. Greek salad was pretty standard. The place was suspiciously quiet on a Sunday afternoon when it should have been full.'), ('Rated 2.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s new, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s loud and itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s got arcade games (a few). But letÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s look at the basics - the food. After all this is zomato right. Well the food is alright. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s junk, a la truffles + some alcohol.\n\nThey have the same old fare - burgers, fries, nachos, sandwiches... blah blah! Another one of those high calorie menus thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s rampant around Bangalore.\n\nGo there to check the box. Nothing special - not the food, not the concept.'), ('Rated 4.0', 'RATED\n  So retro and chill! I love the vibes of the play. Big win on the arcade games. The food is pretty good and value for money. Liquor milkshakes seem interesting, yet to try them. Overall, must visit the place. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice place to spend some time.'), ('Rated 4.0', 'RATED\n  I had seen this place come up on top of Mamagoto and being a fan of American food, wanted to check this place out. And I did so, one fine evening and enjoyed my experience!\n\nThe place has retro vibes with arcade games, foot tapping music and obviously some great food. They are the first ones to have introduced boozy shakes and I must tell you, they are awesome! Totally loved the chicken wings and the burgers.\n\nOverall, a nice place to unwind, and hangout with your loved ones!\n\nCheers!\n\nthefatummy.wordpress.com'), ('Rated 4.0', 'RATED\n  Pretty decent place, liked the ambiance. Peri peri chicken wings, cheese chilli potato fries and salted caramel shake was yummmm. Would definitely recommend this place.'), ('Rated 3.0', 'RATED\n  I really wanted to like this place because of the fun American diner decor and the arcade games. But the food was just not up to the mark. Masala fries and milkshakes were good enough. But the prawn and chicken dishes we ordered were quite bland. Greek salad was pretty standard. The place was suspiciously quiet on a Sunday afternoon when it should have been full.'), ('Rated 2.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s new, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s loud and itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s got arcade games (a few). But letÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s look at the basics - the food. After all this is zomato right. Well the food is alright. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s junk, a la truffles + some alcohol.\n\nThey have the same old fare - burgers, fries, nachos, sandwiches... blah blah! Another one of those high calorie menus thatÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s rampant around Bangalore.\n\nGo there to check the box. Nothing special - not the food, not the concept.'), ('Rated 4.0', 'RATED\n  So retro and chill! I love the vibes of the play. Big win on the arcade games. The food is pretty good and value for money. Liquor milkshakes seem interesting, yet to try them. Overall, must visit the place. ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice place to spend some time.'), ('Rated 4.0', 'RATED\n  I had seen this place come up on top of Mamagoto and being a fan of American food, wanted to check this place out. And I did so, one fine evening and enjoyed my experience!\n\nThe place has retro vibes with arcade games, foot tapping music and obviously some great food. They are the first ones to have introduced boozy shakes and I must tell you, they are awesome! Totally loved the chicken wings and the burgers.\n\nOverall, a nice place to unwind, and hangout with your loved ones!\n\nCheers!\n\nthefatummy.wordpress.com'), ('Rated 4.0', 'RATED\n  Pretty decent place, liked the ambiance. Peri peri chicken wings, cheese chilli potato fries and salted caramel shake was yummmm. Would definitely recommend this place.'), ('Rated 3.0', 'RATED\n  I really wanted to like this place because of the fun American diner decor and the arcade games. But the food was just not up to the mark. Masala fries and milkshakes were good enough. But the prawn and chicken dishes we ordered were quite bland. Greek salad was pretty standard. The place was suspiciously quiet on a Sunday afternoon when it should have been full.'), ('Rated 4.0', "RATED\n  Babayaga is one of the few places which has been successful in establishing itself as American food place in Bangalore. Located on famous 12th main , this place is surely going to impress you with it's some lip smacking cheese dishes, freakshakes & arcade games.\n\nWhat I liked the most here is nachos, cheese sandwich & the fries."), ('Rated 4.0', "RATED\n  The restaurant/bar has a retroesque feel to it with it's Booths and Tables. The milkshakes are amazing and if you're a fan of Bourbon, then the Campfire is a must try.\nThe alcohol is pretty reasonably priced and the service with respect to it is also quite quick and efficient.\n\nThe food was decent with the Polish Pierogies being a little bland and the Fish and Chips being a tad bit too oily. The lasagna was good and so was the Butter Chicken Pie we had.\n\nOverall I'd recommend this place to anyone who wants to relive a 80-90s dream by playing Arcade Games and Foosball with a few drinks to stir up the fun."), ('Rated 4.0', 'RATED\n  Conveniently located, this restaurant/pub has one of the best all American diner ambience around. They have arcade games, neon lights and booths which bring on the nostalgia of the good old days. The staff are very friendly and attentive. They stock some Indian ales, but I prefer the cocktails. The food is tasty but portions are quite small. Appetisers would normally just feed 2 people barely. The cuisine is American and doesnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t disappoint in terms of quality. The overall price for 6 cocktails, 2 appetisers and 2 main course dishes came up to 4K which seems pricy especially for the food considering the small portion sizes.'), ('Rated 4.0', "RATED\n  Babayaga is one of the few places which has been successful in establishing itself as American food place in Bangalore. Located on famous 12th main , this place is surely going to impress you with it's some lip smacking cheese dishes, freakshakes & arcade games.\n\nWhat I liked the most here is nachos, cheese sandwich & the fries."), ('Rated 4.0', "RATED\n  The restaurant/bar has a retroesque feel to it with it's Booths and Tables. The milkshakes are amazing and if you're a fan of Bourbon, then the Campfire is a must try.\nThe alcohol is pretty reasonably priced and the service with respect to it is also quite quick and efficient.\n\nThe food was decent with the Polish Pierogies being a little bland and the Fish and Chips being a tad bit too oily. The lasagna was good and so was the Butter Chicken Pie we had.\n\nOverall I'd recommend this place to anyone who wants to relive a 80-90s dream by playing Arcade Games and Foosball with a few drinks to stir up the fun."), ('Rated 4.0', 'RATED\n  Conveniently located, this restaurant/pub has one of the best all American diner ambience around. They have arcade games, neon lights and booths which bring on the nostalgia of the good old days. The staff are very friendly and attentive. They stock some Indian ales, but I prefer the cocktails. The food is tasty but portions are quite small. Appetisers would normally just feed 2 people barely. The cuisine is American and doesnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t disappoint in terms of quality. The overall price for 6 cocktails, 2 appetisers and 2 main course dishes came up to 4K which seems pricy especially for the food considering the small portion sizes.'), ('Rated 4.0', "RATED\n  Babayaga is one of the few places which has been successful in establishing itself as American food place in Bangalore. Located on famous 12th main , this place is surely going to impress you with it's some lip smacking cheese dishes, freakshakes & arcade games.\n\nWhat I liked the most here is nachos, cheese sandwich & the fries."), ('Rated 4.0', "RATED\n  The restaurant/bar has a retroesque feel to it with it's Booths and Tables. The milkshakes are amazing and if you're a fan of Bourbon, then the Campfire is a must try.\nThe alcohol is pretty reasonably priced and the service with respect to it is also quite quick and efficient.\n\nThe food was decent with the Polish Pierogies being a little bland and the Fish and Chips being a tad bit too oily. The lasagna was good and so was the Butter Chicken Pie we had.\n\nOverall I'd recommend this place to anyone who wants to relive a 80-90s dream by playing Arcade Games and Foosball with a few drinks to stir up the fun."), ('Rated 4.0', 'RATED\n  Conveniently located, this restaurant/pub has one of the best all American diner ambience around. They have arcade games, neon lights and booths which bring on the nostalgia of the good old days. The staff are very friendly and attentive. They stock some Indian ales, but I prefer the cocktails. The food is tasty but portions are quite small. Appetisers would normally just feed 2 people barely. The cuisine is American and doesnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t disappoint in terms of quality. The overall price for 6 cocktails, 2 appetisers and 2 main course dishes came up to 4K which seems pricy especially for the food considering the small portion sizes.'), ('Rated 4.0', "RATED\n  Babayaga is one of the few places which has been successful in establishing itself as American food place in Bangalore. Located on famous 12th main , this place is surely going to impress you with it's some lip smacking cheese dishes, freakshakes & arcade games.\n\nWhat I liked the most here is nachos, cheese sandwich & the fries."), ('Rated 4.0', "RATED\n  The restaurant/bar has a retroesque feel to it with it's Booths and Tables. The milkshakes are amazing and if you're a fan of Bourbon, then the Campfire is a must try.\nThe alcohol is pretty reasonably priced and the service with respect to it is also quite quick and efficient.\n\nThe food was decent with the Polish Pierogies being a little bland and the Fish and Chips being a tad bit too oily. The lasagna was good and so was the Butter Chicken Pie we had.\n\nOverall I'd recommend this place to anyone who wants to relive a 80-90s dream by playing Arcade Games and Foosball with a few drinks to stir up the fun."), ('Rated 4.0', 'RATED\n  Conveniently located, this restaurant/pub has one of the best all American diner ambience around. They have arcade games, neon lights and booths which bring on the nostalgia of the good old days. The staff are very friendly and attentive. They stock some Indian ales, but I prefer the cocktails. The food is tasty but portions are quite small. Appetisers would normally just feed 2 people barely. The cuisine is American and doesnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t disappoint in terms of quality. The overall price for 6 cocktails, 2 appetisers and 2 main course dishes came up to 4K which seems pricy especially for the food considering the small portion sizes.'), ('Rated 4.0', 'RATED\n  Really cute place. Very big and creative menu. Tried the nachos. Really like the presentation of the food. The pico de gallo salsa could be less ketchup tasting and more of a fresh veggies taste (personal preference). We will definitely be going back and hope the cookiewich is available this time around :)'), ('Rated 4.0', 'RATED\n  Babayaga ,A mix of American diner and a hep pub\nGroovy Jazzy music , Retro Arcade Games - highlight was Playing mario after ages , cheesy boozy american dinner kinda food & drinks .\nA fun place , check it out on 12 th Main Indiranagar.\n\nMust Try :\n\nPeri Peri Wings\nBoozy Shakes'), ('Rated 4.0', 'RATED\n  Really cute place. Very big and creative menu. Tried the nachos. Really like the presentation of the food. The pico de gallo salsa could be less ketchup tasting and more of a fresh veggies taste (personal preference). We will definitely be going back and hope the cookiewich is available this time around :)'), ('Rated 4.0', 'RATED\n  Babayaga ,A mix of American diner and a hep pub\nGroovy Jazzy music , Retro Arcade Games - highlight was Playing mario after ages , cheesy boozy american dinner kinda food & drinks .\nA fun place , check it out on 12 th Main Indiranagar.\n\nMust Try :\n\nPeri Peri Wings\nBoozy Shakes'), ('Rated 4.0', 'RATED\n  Really cute place. Very big and creative menu. Tried the nachos. Really like the presentation of the food. The pico de gallo salsa could be less ketchup tasting and more of a fresh veggies taste (personal preference). We will definitely be going back and hope the cookiewich is available this time around :)'), ('Rated 4.0', 'RATED\n  Babayaga ,A mix of American diner and a hep pub\nGroovy Jazzy music , Retro Arcade Games - highlight was Playing mario after ages , cheesy boozy american dinner kinda food & drinks .\nA fun place , check it out on 12 th Main Indiranagar.\n\nMust Try :\n\nPeri Peri Wings\nBoozy Shakes'), ('Rated 4.0', 'RATED\n  Really cute place. Very big and creative menu. Tried the nachos. Really like the presentation of the food. The pico de gallo salsa could be less ketchup tasting and more of a fresh veggies taste (personal preference). We will definitely be going back and hope the cookiewich is available this time around :)'), ('Rated 4.0', 'RATED\n  Babayaga ,A mix of American diner and a hep pub\nGroovy Jazzy music , Retro Arcade Games - highlight was Playing mario after ages , cheesy boozy american dinner kinda food & drinks .\nA fun place , check it out on 12 th Main Indiranagar.\n\nMust Try :\n\nPeri Peri Wings\nBoozy Shakes'), ('Rated 5.0', 'RATED\n  Loved the American Diner concept! Beef chilly and butter chicken pot pie were both extra ordinary, their boozy shakes is a unique concept and the only bar in Bangalore serving this. Great service and very affordable prices. Highly recommended!'), ('Rated 4.0', "RATED\n  I was super interested to visit this place, named like a Russian fairy character. So I came for lunch.\nThe place looking like a new cool restaurant in the area, I think it's great for night hanging out with friends. It's all about design, which is unique. I came in day time, but need to check all the lights in the evening. How cool, that we can play games also there.\nI tried granny's noodle soup, Caesar salad, chilly basil chicken, pepperoni pizza and lemon ice tea.\nSoup was good and spicy. The same about chicken. Salad was ok. That's cool, that pizza is sold buy slices.\nI can't wait to come back for a couple of drinks in the night."), ('Rated 1.0', 'RATED\n  Not impressed at all. \n\nUnfortunately the day we went -- Sunday evening --- No beers (only bottled ones available). \n\nThe food is quite ok-ish. Nothing wow especially for the price you pay. \nFor a diner -- the portions were quite stingy. Surely no value for money. \n\nAs  for dinner --- the options for vegetarians is quite limited. \nThey have only two burgers --- one with Chutney and the other with Tomato jam.  We ended up ordering "Sides" then :-( \n\nAsked the waiter to call the chef --and were refused --- we were told that the chef is too busy, so cannot come. \n\nDefinitely not going to this place again. For the White Owl and Geist Beers --- there are other places in Bangalore worth exploring. \n\nStay away from this one.'), ('Rated 5.0', 'RATED\n  Totallyyyyy loved the place! It brought about a posh version of a classic American diner, including the arcade games as well! Spent a substantial amount of time playing Super Mario Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80 Place is ideal for a friendsÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99 gathering, office team, or even a date! I did find the prices very slightly on the higher side compared to the food quantity. But the quality of food was super! And the ambience, well definitely its pretty Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81 will soon visit again!'), ('Rated 5.0', 'RATED\n  Loved the American Diner concept! Beef chilly and butter chicken pot pie were both extra ordinary, their boozy shakes is a unique concept and the only bar in Bangalore serving this. Great service and very affordable prices. Highly recommended!'), ('Rated 4.0', "RATED\n  I was super interested to visit this place, named like a Russian fairy character. So I came for lunch.\nThe place looking like a new cool restaurant in the area, I think it's great for night hanging out with friends. It's all about design, which is unique. I came in day time, but need to check all the lights in the evening. How cool, that we can play games also there.\nI tried granny's noodle soup, Caesar salad, chilly basil chicken, pepperoni pizza and lemon ice tea.\nSoup was good and spicy. The same about chicken. Salad was ok. That's cool, that pizza is sold buy slices.\nI can't wait to come back for a couple of drinks in the night."), ('Rated 1.0', 'RATED\n  Not impressed at all. \n\nUnfortunately the day we went -- Sunday evening --- No beers (only bottled ones available). \n\nThe food is quite ok-ish. Nothing wow especially for the price you pay. \nFor a diner -- the portions were quite stingy. Surely no value for money. \n\nAs  for dinner --- the options for vegetarians is quite limited. \nThey have only two burgers --- one with Chutney and the other with Tomato jam.  We ended up ordering "Sides" then :-( \n\nAsked the waiter to call the chef --and were refused --- we were told that the chef is too busy, so cannot come. \n\nDefinitely not going to this place again. For the White Owl and Geist Beers --- there are other places in Bangalore worth exploring. \n\nStay away from this one.'), ('Rated 5.0', 'RATED\n  Totallyyyyy loved the place! It brought about a posh version of a classic American diner, including the arcade games as well! Spent a substantial amount of time playing Super Mario Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80 Place is ideal for a friendsÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99 gathering, office team, or even a date! I did find the prices very slightly on the higher side compared to the food quantity. But the quality of food was super! And the ambience, well definitely its pretty Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81 will soon visit again!'), ('Rated 5.0', 'RATED\n  Loved the American Diner concept! Beef chilly and butter chicken pot pie were both extra ordinary, their boozy shakes is a unique concept and the only bar in Bangalore serving this. Great service and very affordable prices. Highly recommended!'), ('Rated 4.0', "RATED\n  I was super interested to visit this place, named like a Russian fairy character. So I came for lunch.\nThe place looking like a new cool restaurant in the area, I think it's great for night hanging out with friends. It's all about design, which is unique. I came in day time, but need to check all the lights in the evening. How cool, that we can play games also there.\nI tried granny's noodle soup, Caesar salad, chilly basil chicken, pepperoni pizza and lemon ice tea.\nSoup was good and spicy. The same about chicken. Salad was ok. That's cool, that pizza is sold buy slices.\nI can't wait to come back for a couple of drinks in the night."), ('Rated 1.0', 'RATED\n  Not impressed at all. \n\nUnfortunately the day we went -- Sunday evening --- No beers (only bottled ones available). \n\nThe food is quite ok-ish. Nothing wow especially for the price you pay. \nFor a diner -- the portions were quite stingy. Surely no value for money. \n\nAs  for dinner --- the options for vegetarians is quite limited. \nThey have only two burgers --- one with Chutney and the other with Tomato jam.  We ended up ordering "Sides" then :-( \n\nAsked the waiter to call the chef --and were refused --- we were told that the chef is too busy, so cannot come. \n\nDefinitely not going to this place again. For the White Owl and Geist Beers --- there are other places in Bangalore worth exploring. \n\nStay away from this one.'), ('Rated 5.0', 'RATED\n  Totallyyyyy loved the place! It brought about a posh version of a classic American diner, including the arcade games as well! Spent a substantial amount of time playing Super Mario Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80 Place is ideal for a friendsÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99 gathering, office team, or even a date! I did find the prices very slightly on the higher side compared to the food quantity. But the quality of food was super! And the ambience, well definitely its pretty Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81 will soon visit again!'), ('Rated 4.0', "RATED\n  Absolutely loved Babayagas. Right down to the thought put into the interior details and the arcade machines.\nI highly recommend the dragon fire poppers and butter chicken fries for starters. I quite liked the pizza by the slice although the veg options are quite limited.\nI'm a huge fan of the boozy milkshakes. I'd like to try all of them on the menu.\nService is a little lacking. That would be my only qualm.\nWeekends are packed and unless you arrive early, don't expect to be seated.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
Visited this place yet again today. Catching up with friends. Never disappoints.\nHad the corn and chilly chowder, that's my favourite thing to have here. And it's filing. I liked the pizza this time round, Mexicorn Pizza, was yummy and loved the crust as well.\nPlus, tried couple of dishes from their new menu, the kung pao lotus root, loved this dish. And also the chef's special hot pot, was really flavoursome.\nAnd also, My friend and I, usually used to work from here sometimes. It's one of our fav go to places. Quite and peaceful as well."), ('Rated 3.0', "RATED\n  Nice place for vegetarians but didn't impress me much.\nThe seating is cute but very uncomfortable. The washrooms can be cleaner and taken better care of.\nAlso, there's no parking nearby so that can be a concern."), ('Rated 4.0', "RATED\n  When you're in search of a nice cozy place which serves you veg food then this is your perfect destination.\nWith combination of North Indian and continental food available it satisfies all kinds of tastebuds.\nMy review for this place is\nFood 4/5\nAmbience 4/5\nService 3/5\nCost for 2 800-1000"), ('Rated 4.0', 'RATED\n  It is a great place for a Friday evening.\nAmbience is great food is great .\n\nWe had Americanism , vergin mohito for drinks .drinks were okay okay nothing great .\nWe had Chinese bhel, Mezze platter , and veg sizzlers . Everything is good but bit over priced . We had cupcakes and brownies for deserts . Everything was good . Specially , I liked hummus and cupcakes .'), ('Rated 3.0', "RATED\n  The ambience of the place and service is good. Although due to some renovations the menu is SO limited. I was unhappy with the plates they served us in and the paper cup of lemon soda was over priced for the quantity. We saw a few people get up to leave as soon as they saw the menu.\nI don't see why guests need to enter this place if there is renovations going on. Also, the place was a little dusty.\n\nNOT throwing hate. But this beautiful place has its crowd left a little disappointed because of the inconvenience, which could have been avoided easily."), ('Rated 4.0', 'RATED\n  Beautiful ambience. Quite and calm. A good choice for a romantic dinner as well. Food is good especially kulhad ki chai, soya Kheema Pav, aloo takki, hing aloo with methi puri.'), ('Rated 4.0', 'RATED\n  All I can say is it?s a cuty place with fresh food, if you?ve a gang to shout and celebrate please search a celebration place like any pubs or resto bar who has the same energy level neighbours as well'), ('Rated 4.0', 'RATED\n  We now have great pet friendly cafe options in blore. As a pet owner I was always skeptical about taking my pet out to a place I was unsure about. I headed to green theory as my friend strong y suggested that I try this place. You will fall in love with the place. It is surely the coolest pet friendly cafe in blore. They area pet friendly menu too, to make sure ur pooches have a good time..'), ('Rated 4.0', "RATED\n  It's an amazing cozy place located in peaceful area away from hustle bustle of town.Its catering great variety of tea as well as healthy options in beverage,they need to improve bit in their food flavours,rest it's worth going there ."), ('Rated 3.0', 'RATED\n  I would rate 3.5 rather. Went around 11.30 am, cleaning and some renovation work was going on. Honestly, place looked fine, maybe it looks better in evening with all lights and all.\nOrdered papaya salad, which was little better than fine, platter that we ordered was just fine types. Taste can be much worked upon and items on platter too. I think much work needs to go in based on 2-3 items i trued.. maybe i tried limited things but i look for something new, innovative or if menu serves common items then some excellent taste in same old things ;)'), ('Rated 5.0', "RATED\n  A nice place with a garden like sitting arrangement ...so u get some fresh air if that's what ur looking for...parking maybe a bit of a problem as there's no space around to park a four wheeler.\nHad ordered two sizzlers..both of them were just amazing...one of the best I've had. The panner sizzler was the best of the two.\nFood:4/5\nStaff:5/5\nAmbience:4/5"), ('Rated 4.0', 'RATED\n  Though they were renovating they kept up their standards ... appreciative? I totally loved the lavender tea and the tabouleh (perfectly made with well chopped parsley,tomato,bulgar wheat and seasoning). Will visit again to try out their varieties of tea .\nCleanliness 4\nStaff 4\nFood 4\nAmbience 3.5'), ('Rated 4.0', 'RATED\n  Tried the place as the same is listed on Zomato Gold. Nice and cool ambience with ample seating capacity indoor and outdoor. Spinach corn sandwich and farmhouse pizza were too delicious. Definitely a place to visit again. Service is also good.'), ('Rated 3.0', 'RATED\n  I would rate 3.5 rather. Went around 11.30 am, cleaning and some renovation work was going on. Honestly, place looked fine, maybe it looks better in evening with all lights and all.\nOrdered papaya salad, which was little better than fine, platter that we ordered was just fine types. Taste can be much worked upon and items on platter too. I think much work needs to go in based on 2-3 items i trued.. maybe i tried limited things but i look for something new, innovative or if menu serves common items then some excellent taste in same old things ;)'), ('Rated 5.0', "RATED\n  A nice place with a garden like sitting arrangement ...so u get some fresh air if that's what ur looking for...parking maybe a bit of a problem as there's no space around to park a four wheeler.\nHad ordered two sizzlers..both of them were just amazing...one of the best I've had. The panner sizzler was the best of the two.\nFood:4/5\nStaff:5/5\nAmbience:4/5"), ('Rated 4.0', 'RATED\n  Though they were renovating they kept up their standards ... appreciative? I totally loved the lavender tea and the tabouleh (perfectly made with well chopped parsley,tomato,bulgar wheat and seasoning). Will visit again to try out their varieties of tea .\nCleanliness 4\nStaff 4\nFood 4\nAmbience 3.5'), ('Rated 4.0', 'RATED\n  Tried the place as the same is listed on Zomato Gold. Nice and cool ambience with ample seating capacity indoor and outdoor. Spinach corn sandwich and farmhouse pizza were too delicious. Definitely a place to visit again. Service is also good.'), ('Rated 3.0', 'RATED\n  I would rate 3.5 rather. Went around 11.30 am, cleaning and some renovation work was going on. Honestly, place looked fine, maybe it looks better in evening with all lights and all.\nOrdered papaya salad, which was little better than fine, platter that we ordered was just fine types. Taste can be much worked upon and items on platter too. I think much work needs to go in based on 2-3 items i trued.. maybe i tried limited things but i look for something new, innovative or if menu serves common items then some excellent taste in same old things ;)'), ('Rated 5.0', "RATED\n  A nice place with a garden like sitting arrangement ...so u get some fresh air if that's what ur looking for...parking maybe a bit of a problem as there's no space around to park a four wheeler.\nHad ordered two sizzlers..both of them were just amazing...one of the best I've had. The panner sizzler was the best of the two.\nFood:4/5\nStaff:5/5\nAmbience:4/5"), ('Rated 4.0', 'RATED\n  Though they were renovating they kept up their standards ... appreciative? I totally loved the lavender tea and the tabouleh (perfectly made with well chopped parsley,tomato,bulgar wheat and seasoning). Will visit again to try out their varieties of tea .\nCleanliness 4\nStaff 4\nFood 4\nAmbience 3.5'), ('Rated 4.0', 'RATED\n  Tried the place as the same is listed on Zomato Gold. Nice and cool ambience with ample seating capacity indoor and outdoor. Spinach corn sandwich and farmhouse pizza were too delicious. Definitely a place to visit again. Service is also good.'), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 5.0', "RATED\n  OMG!!! This place is just beautiful. The food here is delicious. The ambience is lovely. The staff is super supportive. Must try Oreo Cheesecake, Farmhouse Pizza, and Chinese Bhel. French fries were good too.\nIdk why but the atmosphere in this restaurant was so peaceful yet beautiful. They don't have a much no of tables available so you might have to wait for sometime to get a table.\nI would suggest that visit this place after 6pm.\nOverall ratings:\nAmbience - 4/5\nFood - 4/5\nStaff - 5/5"), ('Rated 3.0', 'RATED\n  The place is surrounded with greenery. Its a cute little cafe. We ordered Chinese Bhel it was spicy. Guava juice which was ok. The spinach pasta was good. Worth the try. The food earlier used to be better.'), ('Rated 4.0', "RATED\n  Good place with good vibes and good ambience. I ordered stuffed mushroom crunchy, multi grains pita pockets with falafel, Pasta with tomato garlic and basil sauce and I must say they were pure delight for my tastebuds... Ps-they don't serve you extra sauces."), ('Rated 5.0', 'RATED\n  The way the place has been set up is so unique and pleasing with these pretty little lights spread across the trees.\nAnd plus it?s pet friendly.&hearts;?\nOrdered the brownie shake and pull apart garlic bread.\nCouldn?t try main courses\nBut the shake was righty done; Pull apart garlic bread was so full of cheese and super filling.'), ('Rated 3.0', "RATED\n  Ambience:4/5\nService:3/5\nHad been here with my friends for lunch.\nFirst of all the place is really small and can't serve a big group of people.\nIt was pretty hard getting the staffs attention to place our order.\nWe ordered\n>Green theory Nachoes\n>Babycorn potato cigars\n>French fries and potato wedges\nWe also wanted a few other starters but they were unavailable which was quite disappointing .\nThe Nachoes were good but the babycorn potato cigars were really bad would definitely not recommend that .\n>Margarita pizza\n>Farmhouse pizza\n>Pesto pasta with spinach\n>Pasta in creamy mushroom sauce\nThe pizzas were good not that great the pesto pasta was really bad but the mushroom sauce pasta was good ."), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 2.0', 'RATED\n  As everyone knows , this is a vegetarian place. Was forced here by a vegan friend who wanted me to be vegetarian ?for a change? ....well dint work! Extremely cafe style place with lots of mosquitoes- they were kind to offer a repellent to no avail !! I ordered the paneer sizzler I dint fancy it at all. Tried washing it down with a brownie shake which was watery as hell. 2 points only for the staff very courteous. Unfortunately this place isn?t for me.'), ('Rated 4.0', 'RATED\n  Beautiful ambience, great good and great location( being in the heart of the city) pretty much sums it up. The menu is quite robust for a all vegetarian place and have a beautiful way to bring out the great flavour to want more. The low seating area kind of gives it a homely feel to the restaurant.\nAmbience is great for high tea or an early supper and follow through with a conversation.\nUsually it gets busy during the weekends but walking in without a reservation on the weekday is fine. One can expect to shell out about INR 1000 for two over a meal.\nDo try their Herb soup, Broccoli and peanut stir fried salad and garlic bread.'), ('Rated 1.0', 'RATED\n  Green Theory is quite a popular name for vegetarian food in the city. One Sunday evening, we decided to try the place. Though it looked beautiful with lush greenery, the mosquitoes were a big irritation. To top that the use of coils was annoying. We ordered for a green theory sampler & Thai papaya salad along with Watermelon basil cooler & Darjeeling silver white tea. Not a single dish stood out. The platter was really bad. It consisted of corn potato cigars,broccoli rolls,tomato bruschetta, nachos,paneer satay. Below average stuff. Thai papays salad was better but still very ordinary both in taste & looks. Drinks were the worst of the lot. Tea had no flavours at all. The less I speak abt the cooler the better. Pricing is also not really reasonable but then they have Zomato Gold. A very below par experience.'), ('Rated 4.0', 'RATED\n  Travelled over two hours for this place, it was worth the travel. The ambience was excellent. We spent two hours and did not realise how quickly time went.\n\nThe food was great, I went with some of the reviews here.\nPaneer satay starter was good, papaya lemon was okayish. Nothing extraordinary about it . We also tried the corn chilly chowder soup. The taste was excellent minus the ton of small green chilly present in the soup.\n\nWe then tried spinach pasta which was okay. It was a bit too dry for my taste. We tried veg au gratin which was delicious. We also tried a dish suggested by the waiter, consisting of paneer and Mexican rice. It was good.\n\nFor desserts we had tried Oreo cheesecake and savoury tart. Both of them were delicious.\n\nI had a great time, would love to come back again. A bug thanks to Zomato gold also!'), ('Rated 4.0', 'RATED\n  Ambience was okay okay. We had ordered for Thai fried rice which tasted good and also a farmhouse pizza.Bevrage I had ordered was brownie shake which was not so good\n.\n.\n.\n.\n.\n#foodieforlife#foodphotographyfoodblogger#kannadablogger#writersofinstagram#foodblogger#foodblogging#foodie#eatoutoftheweek#eatouts#instalovers#instafamilia#insta#instafamous#instalovers?#instalook#dressup#eatenlightened #kannadablogger#bengalurublogger#zomato#zomatoreviewer'), ('Rated 4.0', 'RATED\n  Lovely place. Great food. Good service. Reminds you of the "old bangalore" from the 90\'s. Nice outdoor seating.. Excellent menu.. something for everyone. Truly enjoyed our meal.'), ('Rated 4.0', 'RATED\n  Rarely do we visit an ALL veg place and so when we do, our expectations are high.\n\nAnd we were not let down. Simply loved their Raw Papaya Salad and Thai curry rice. Their mezze platter was good too. The mushroom soup definitely needed improvement and so did the sizzlers but overall a good meal, well made, good flavours in a nice cozy environment. Service was nice with good friendly staff.'), ('Rated 3.0', 'RATED\n  Cute and cosy place on a quiet street just off the noisy and bustling Residency Road. I went to Green Theory for my birthday dinner with my extended family and it was a lovely experience.\n\nHouses converted into restaurants are my favourite kind and this definitely tops the list of those places. We got a space all to ourselves and thoroughly enjoyed the evening.\n\nMost of the dishes we ordered were good except the Cottage Cheese Pizza which had zero flavour.\n\nAll in all, a lovely place for a tranquil dinner.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
Food-4.5(for the pizzas)\nService-2.5\nAmbience-4.0\nI'm a regular at the vinnys in banashankari.Wanted to try the vinnys in bel road as it had more variety in the menu to offer.Pizzas were great as usual nothing to complain about ,I had also ordered the onion rings which was honestly not that great.The batter was too thick it was still a bit soggy.The let down in this place was the service.The waiter who served me was lost as to what was happening dint know what items on the menu was not being served.Would visit this place again if the service improves."), ('Rated 5.0', 'RATED\n  Customised our own 12" pizza with sun-dried tomatoes (literally the best thing in this planet), jalapenos and baked potatoes. I love their wood fired pizzas. Would happily give this place a 5 star rating.\nNot to forget the good music and ambience.'), ('Rated 1.0', 'RATED\n  Detailed review coming up. i have ordered garlic bread cheese and garlic bread with cheese and veggies from this vinnys many times. THESE PEOPLE DONT CARE ABOUT THEIR CUSTOMERS AT ALL. THE ITEM WAS NOT PACKED PROPERLY AT ALL DESPITE ME REQUESTING THEM TO PACK IT PROPERLY MANY TIMES. ALL THE GARLIC BREADS STICK TO EACH OTHER AND RUIN THE CHEESE PART ON TOP'), ('Rated 3.0', 'RATED\n  One fine afternoon when we decided to visit this place when many of my frnds recommended but i coudnt feel it wasnt upto the mark. Located on New Bel road, easy to find it as the seating area is open out which is quite cool. Ambience and the seating arrangement is good too.\n\nThe attendant was unware of the description of the menu, wasnt audiable nor was able to understand us, which was a headache while ordering the food but somehow got it done.\n\nOrderd "mix sauce veg pasta" - was completly out of the taste line. "Chicken lasagne" - was good but low on quantity. "Chicken casarole" - fine in taste. The mocktails were good esp "apple kiwi lemonade" and "queens punch".\n\nOverall experience not that gr8. Cool place to hang out and yet to try the pizza section'), ('Rated 3.0', 'RATED\n  Heard a lot about this place from a friend of mine but was not Upto the mark as expected ...the ambience was that good and the food was just above average.\nJalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o cheese poppers was a disaster and the mixed veg pasta was just ok not great.'), ('Rated 3.0', 'RATED\n  The food is pretty average here and ambience is also not much great. However a couple of cons are there like easily affordable prices and superfast service of your orders.'), ('Rated 3.0', "RATED\n  Was a very happening place 3 years ago.\nIt's reduced it's quality of food due to which it lost its popularity.\nHave tried their pasta, lasagna, chicken wings and a couple of their desserts\nI would recommend the pizza though.\nAmbiance is good, it's not that hard to find parking too."), ('Rated 4.0', 'RATED\n  The food had its own variety... They dont provide 9" pizza at the table, its for home delivery only..Ambience is good.. overall one time go\n#staffs are friendly...\n#rate is nominal\nThe taste wasnt up to the markÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91'), ('Rated 5.0', "RATED\n  Awesome place.. you don't have more options for Pizza.. The ambience is good, friendly staff and decent food.\n\nSoups are really good.. Cream of mushroom must try.."), ('Rated 4.0', "RATED\n  For some reason...I love going to Vinny's whenever I want to eat my party food...pizza and pasta! This place is ideal for those who love their pizzas in slices coz you can make your own version with different toppings which is the best part about this place. The pasta too is very saucy which fills out your pasta taste buds perfectly. The drinks go well with the food but I'm not so sure about the desserts which seem mostly pre baked and not so fresh. The ambience is cool and refreshing and ideal for kids birthday bash coz all the food here are just basic party kind.. Nacho's.. garlic bread and yummy wood fired pizza which tastes amazingly good. Must try. Cheers!"), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Good Ambience. Friendly staffs and good Pizza Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95\nSince itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s walkable distance from my place I come here often with my sister or friends.\nThe dessert here is good too.\nWould recommend for a casual day out.'), ('Rated 2.0', 'RATED\n  There is a offer for combo....we ordered a combo...I think I had the worst fries ever ...pasta is also bad in taste\nThey need to improve a lot in taste'), ('Rated 4.0', "RATED\n  If you want authentic wood fire thin crust pizza then this is the best place to have. It is value the every penny you spend in this restaurant. The crust is so just perfect, more over the price is very reasonable. Pizza was awesome with perfect toppings (one can choose their own toppings).\n\nThe ambience is so cool to hang with friends. One has to keep a little patience to get their pizzas, as they are making it in wood fire. The place is known for their pizzas but Carmel Custard wasn't that great.."), ('Rated 4.0', 'RATED\n  Been to this place few times. They have recently upgraded their menu. They have got a very nice ambience. Their service is fast enough.\n\nWe had two 12 inch pizzas with different toppings. Both were nice. Their pizzas had very thin crust which was very nice.\n\nThen we had desserts. Their apple pie pudding was delicious and tiramisu was even better.\n\nOne can go and try this place to have some delicious food.'), ('Rated 3.0', "RATED\n  Having heard loads about their food and putting to use my newly acquired Zomato gold, I ended up in Vinny's with a few friends for lunch. We went around new Bel for a long time looking for parking only to return and find that they have valet parking!\n\nBeing a weekday afternoon the restaurant was quiet empty. The place is very small and has a very casual ambience.\n\nBetween the two of us we shared 2 single slices and a bowl of pesto pasta. The pizza were really nice and thin and the sauce also had tons of flavour. The pizza slice wasn't as greasy when compared to many other popular restaurants. Coming to the pasta it was not that reat. The sauce tasted slightly odd and not like usual pesto.\n\nVinny's is a good spot to hangout with friends and get some good food which becomes much more affordable when you have zomato gold."), ('Rated 3.0', "RATED\n  Ordered french fries with cheese and the cheese tasted like white pasta sauce and also not that great.\nThe chicken wings were good.\nPizza's are a must try here.\nFor drinks we ordered Raspberry Mojito,Banana smoothie and Cranberry Mojito.\nService was average.\nFood-3.5/5\nService-3/5\nValue for money-4.5/5\nAmbience-4/5\nOverall-3/5"), ('Rated 5.0', 'RATED\n  THEIR PIZZAS ARE ABSOLUTELY DELICIOUS!!!!!!\nBarbecue chicken pizza is a must try.\nAlthough I didnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t like their vegetarian pizza that much, they were average but OMG THAT BARBECUE CHICKEN PIZZA AHHHH CAN HAVE THEM ALL DAY EVERYDAY. \U0001f9e1\U0001f9e1\U0001f9e1'), ('Rated 3.0', 'RATED\n  We reached towards the end of the day and immediately had a feeling that the staff was too tired to serve one last bunch of customers. Fair enough as I can understand the classic feeling of getting extra work when you are just planning to leave office. And I am not penalising the team for this\nThe food was really below average. The chicken wings were coated with flour which was not well fried hence felt raw and chewy. The garlic prawns were like really tiny. You cannot have such tiny prawns as starters especially when you are charging a bomb for these. The garlic was also in the raw side and not well fried\nThe only saving grace was the pizza which was decent. The cheese and the tomato on top was well balanced. However, disappointed at the options of pizza available'), ('Rated 4.0', "RATED\n  This pizza joint in Bangalore serves authentic pizzas. Neatly designed interior and prompt service @ very affordable price made this place extremely popular among college goars.\n\nWe went out for causal dinner\n\nWe had for starters.\n\n1. Chicken garlic fingers. : Soft and succulent this crumb fried item was too good.\n\n2. Honey bbq chicken wings. : Average . Boiled wings with spices makes it very dull.\n\nPizzas\n\n1. Chicken lover's Pizza ; it's a delight to have. Do try this one out . Infusion of salami and bbq chicken with optimum Amount of cheese ..\n\n2. Chicken pepperoni : it was again a good one . Nice blending of cheese and pepperoni.\n\nFor dessert we had tiramisu and Belgian chocolate cake ..\n\nTiramisu was disaster , better not to have it here..\n\nBelgium cake was ok..\n\nOverall nice experience without the dessert .\n\nI am going with 4/5 ."), ('Rated 4.0', "RATED\n  Like Pizza's? Then Vinny's is really good. Tried the pasta but didn't like it as much as the pizza. Ambience is good, service is decent too and the food is reasonable."), ('Rated 4.0', 'RATED\n  Not a lot of variety, but the pizza is great. Also the place seems laid back. So one can easily take their time and have a long chat even after finishing their food.'), ('Rated 3.0', 'RATED\n  We reached towards the end of the day and immediately had a feeling that the staff was too tired to serve one last bunch of customers. Fair enough as I can understand the classic feeling of getting extra work when you are just planning to leave office. And I am not penalising the team for this\nThe food was really below average. The chicken wings were coated with flour which was not well fried hence felt raw and chewy. The garlic prawns were like really tiny. You cannot have such tiny prawns as starters especially when you are charging a bomb for these. The garlic was also in the raw side and not well fried\nThe only saving grace was the pizza which was decent. The cheese and the tomato on top was well balanced. However, disappointed at the options of pizza available'), ('Rated 4.0', "RATED\n  This pizza joint in Bangalore serves authentic pizzas. Neatly designed interior and prompt service @ very affordable price made this place extremely popular among college goars.\n\nWe went out for causal dinner\n\nWe had for starters.\n\n1. Chicken garlic fingers. : Soft and succulent this crumb fried item was too good.\n\n2. Honey bbq chicken wings. : Average . Boiled wings with spices makes it very dull.\n\nPizzas\n\n1. Chicken lover's Pizza ; it's a delight to have. Do try this one out . Infusion of salami and bbq chicken with optimum Amount of cheese ..\n\n2. Chicken pepperoni : it was again a good one . Nice blending of cheese and pepperoni.\n\nFor dessert we had tiramisu and Belgian chocolate cake ..\n\nTiramisu was disaster , better not to have it here..\n\nBelgium cake was ok..\n\nOverall nice experience without the dessert .\n\nI am going with 4/5 ."), ('Rated 4.0', "RATED\n  Like Pizza's? Then Vinny's is really good. Tried the pasta but didn't like it as much as the pizza. Ambience is good, service is decent too and the food is reasonable."), ('Rated 4.0', 'RATED\n  Not a lot of variety, but the pizza is great. Also the place seems laid back. So one can easily take their time and have a long chat even after finishing their food.'), ('Rated 3.0', 'RATED\n  We reached towards the end of the day and immediately had a feeling that the staff was too tired to serve one last bunch of customers. Fair enough as I can understand the classic feeling of getting extra work when you are just planning to leave office. And I am not penalising the team for this\nThe food was really below average. The chicken wings were coated with flour which was not well fried hence felt raw and chewy. The garlic prawns were like really tiny. You cannot have such tiny prawns as starters especially when you are charging a bomb for these. The garlic was also in the raw side and not well fried\nThe only saving grace was the pizza which was decent. The cheese and the tomato on top was well balanced. However, disappointed at the options of pizza available'), ('Rated 4.0', "RATED\n  This pizza joint in Bangalore serves authentic pizzas. Neatly designed interior and prompt service @ very affordable price made this place extremely popular among college goars.\n\nWe went out for causal dinner\n\nWe had for starters.\n\n1. Chicken garlic fingers. : Soft and succulent this crumb fried item was too good.\n\n2. Honey bbq chicken wings. : Average . Boiled wings with spices makes it very dull.\n\nPizzas\n\n1. Chicken lover's Pizza ; it's a delight to have. Do try this one out . Infusion of salami and bbq chicken with optimum Amount of cheese ..\n\n2. Chicken pepperoni : it was again a good one . Nice blending of cheese and pepperoni.\n\nFor dessert we had tiramisu and Belgian chocolate cake ..\n\nTiramisu was disaster , better not to have it here..\n\nBelgium cake was ok..\n\nOverall nice experience without the dessert .\n\nI am going with 4/5 ."), ('Rated 4.0', "RATED\n  Like Pizza's? Then Vinny's is really good. Tried the pasta but didn't like it as much as the pizza. Ambience is good, service is decent too and the food is reasonable."), ('Rated 4.0', 'RATED\n  Not a lot of variety, but the pizza is great. Also the place seems laid back. So one can easily take their time and have a long chat even after finishing their food.'), ('Rated 4.0', 'RATED\n  Been here for veg dinner . Ended up having a sumptuous one . Loved their mozzarella sticks and Pizzas . Waiting to try their non veg Pizzas sometimes. Must visit for Italian food .')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
Overall experience was good and the food was delicious!\nBecause its a restaurant inside a hotel, you wont find any crowd there. Hence, good if you want to have a quite dinner.'), ('Rated 1.0', 'RATED\n  Found hair in ur food! Extremely disappointed. Will not visit again ! Very disgusted and very unhappy. Will also not recommend it to my friends or relatives. Variety was very less! also food was very oily.'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s was a good experience, the place was quiet and the buffet was good, itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s small place for a buffet. I have experienced it in a less crowded Weekday, the quality of food is good, the deserts need to be worked upon. Hmm I wonder how it would be when it gets crowded!!!'), ('Rated 2.0', 'RATED\n  Bland and unadventurous food. They have good number of options in the buffet but not worth 800. This place is only for someone who likes plain and sweet food.'), ('Rated 5.0', 'RATED\n  This place is ideal for Business Lunch. Place where you can get good food at reasonable cost. Food options are also plenty. All in all a VFM (Value For Money) Place.'), ('Rated 4.0', 'RATED\n  This restaurant is located inside St marks hotel. Lunch buffet is a must. From salad to main course to dessert, everything was delicious. I would highly recommend this place.'), ('Rated 5.0', 'RATED\n  Wonderful food and impeccable service! This is the place to eat and stay! Over many years they keep on being excellent! From the marvelous dhal, yellow Dahl, markani Dahl and the chicken tikka and tandoor, everything is fantastic. A lovely bar and rooftop bar with great views over Bangaluru.'), ('Rated 5.0', 'RATED\n  I came here twice or thrice with my colleagues for Lunch Buffet. Food is well prepared and served. There is always something new/special in the menu. Chef himself will be suggesting and taking suggestions on the food. Service is good. All my colleagues loved the food and place.\nFood - 5/5\nService - 5/5\nCost to Value - 4.5/5\nAmbience - 4.5/5'), ('Rated 2.5', 'RATED\n  Went with an office team of about 12. Decent ambience and courteous staff. Buffet was fresh and well prepared. Nothing exquisite or differentiating that stood out. But overall decent and enjoyable. Could do with a bit more novelty in food options.'), ('Rated 4.0', 'RATED\n  As we were staying at the hotel and given it was a rainy day, we decided against going out for dinner. \n\nThe place did not disappoint. The interiors are subdued, not over the top. It was clean! The menu was short and sweet as there was no confusion in the order. \n\nFor starters we ordered the Nellore Kodi Vepadu, it was chunks of boneless chicken, well coated with a spicy sauce. This was one good dish. Chicken was tenderly done. The other order was the ghosht kheema kebabs - nice and flavourful, it came to us a tad  bit cold - and kebabs are eaten off the skewer. For the mains we ordered the kandhahari bhuna ghost, a nice onion tomato based gravy and the chettinad chicken gravy, with strong southern flavours of pepper. The mixed fried rice, though simply done, was a tasty. \nThe watermelon, apple and ginger drink was a different one and had a nice zing about it. \nThe prices are not bad at all. Service was good and very pleasing.'), ('Rated 2.5', 'RATED\n  Very disappointed with the bar staff and menu as they had an outdated beer section and on asking for BIRA staff told me they did not know the existence of one of the most selling beers in the city.\n\nFood on the other hand was decent!'), ('Rated 3.5', 'RATED\n  Had been here for lunch with better half. Booked via dineout app. Pretty decent food for the price of 699 excluding GST.\nGood spread of salads and good starters. Main course was nice with biriyani being surprisingly yummy, usually at buffets the biriyani is not so good..here both of us liked it.\nDeserts were ok. Not much options though. Overall a pretty affordable place to visit once in a while.'), ('Rated 4.0', "RATED\n  This restaurant part of the St Marks Hotel in Bangalore-as a rule I don't usually review hotels but the offerings here were so delicious I find it hard not to say a few words. Chilli flake Chicken tikka and Tandoori paneer starters followed by Dal Makhani and potato and cauliflower pulao with breads were fantastic. Especially the dal-the black dal flavours were deep, rich and fully realised. A triumph. Saint Top Marks!"), ('Rated 2.5', "RATED\n  Good food and service but quit and liked the decor will come back again and hope things get better because had lots of expectation and came but overall it's was fun and ok stuff"), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 4.5', "RATED\n  Visited this place for a team lunch.Nice decor,comfortable seating and it seemed to have a positive vibe.I liked the idea of their island table where Salads and Desserts were back to back.It was like getting a glimpse of Heaven(Healthy Salad) and Hell(Dessert expanding waistlines) at the same time.The food was delicious.\nMust try Baked Gulab Jamun alias Heart attack on a plate.Definitely worth a visit.\nNote: Don't stand on a weighing scale for a week"), ('Rated 4.0', 'RATED\n  Recently i was there with family for lunch. Ambience of the place was great & relaxing .good food & excellent service with ever smiling staff.quality of food was good & did not feel heavy on pocket either. Desert was really excellent.'), ('Rated 5.0', 'RATED\n  I recently dined at this restaurant and was pleasantly surprised.The lunch buffet offered a large variety of salads,starters,main course and desserts.The food was Tasty and served hot.Service was prompt and done with ever smiling faces.Best part would be the pricing real easy on the wallet'), ('Rated 4.5', "RATED\n  The place is very conveniently located and reaching there is no hassle. We were a bunch of 18 people from office for a colleague's farewell party. The ambience was really awesome. The food and service of the staff was very warm and courteous. The spread was apt and had a good time .."), ('Rated 4.5', "RATED\n  So we were here on the day of Kannada rajyothsava as they had a feast of all Karnataka food. It was really wonderful to see a huge spread of local dishes from rasam to obbattu and many more on a buffet spread. Even the plates given were like huge thaali plates and was enough to fit in more food. For the drink they had butter milk. They had around 5 starters 5 main course dishes with varieties of breads and even neer dosa, ragi /akki rotti and puri as well. Desserts were a huge spread from penee to pakad puri. I loved their food and it was a perfect meal. They had even set up a small model depicting Karnataka's rural area with turbans to wear and click pictures. The best part was- they played Kannada old school music."), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 1.5', "RATED\n  Been here on June '15. Went with high expectation. Chose buffet which was a mistake. Ambience was OK but food was not good. Will not recommend."), ('Rated 3.5', "RATED\n  I stayed for a night at St Mark's Hotel and tried buffet breakfast here.\n\nThe ambience of the place is quiet decent. Service is quick and staff is very nice.\n\nI thought the spread was good and few items I tried like chana masala, karnataka paratha, medu vada and idli were good.\n\nOverall decent place."), ('Rated 1.0', 'RATED\n  I wish there is something called tenth class (which we usually call 3rd class), pathetic experience. House chef (from odisha)\nwho says is IHM pass out does not even know how the same is cooked. No one should visit them at all, if looking for really nice authentic indian food.'), ('Rated 4.0', 'RATED\n  Ambience was great and uh, the service was okay. Good stuffs on menu and yeah, I had one of the best biriyani there. It was amazing. The desert part was lovely.'), ('Rated 3.5', 'RATED\n  Have tried the buffet here over lunch and the variety is huge. Food is okay probably bcoz u can never really expect too much from a buffet and their service and staff is good. Quite a casual ambience for a good lunch'), ('Rated 3.5', "RATED\n  Been there for some work .. doesn't have any kind of mood for a buffet lunch but after speaking with the manager and chef of the restaurant, decided to visit here d very next day.\n\nIts pretty gud spread, every starter is dry and very hard to chew, we got freshly prepared starters after informed them abt the issue.\n\nShould i visit again ? Naaah.."), ('Rated 4.5', 'RATED\n  We chose to go to Curry with a K for a special occasion in the family, after quite a while.\nSaturday buffet lunch was extremely tasty and all the items were very delicately made.\nSpecial thanks to Mr.Jafar and team for making the occasion even more memorable, with a special cake and a never seen before "egg nest" dessert.'), ('Rated 4.0', "RATED\n  Nice decor nice maintained place...Good Ambience....food is good...I had been here on a friend's request and I seriously do not regret going there...food is good but nothing yummmm....will surely visit again...."), ('Rated 4.0', "RATED\n  Amazing people! Food was decent. Dessert was the best. I'd recommend the manchow soup and the baked gulab jamun. This restaurant has pretty decent pesto based pasta!"), ('Rated 3.5', 'RATED\n  Have tried the buffet here over lunch and the variety is huge. Food is okay probably bcoz u can never really expect too much from a buffet and their service and staff is good. Quite a casual ambience for a good lunch'), ('Rated 3.5', "RATED\n  Been there for some work .. doesn't have any kind of mood for a buffet lunch but after speaking with the manager and chef of the restaurant, decided to visit here d very next day.\n\nIts pretty gud spread, every starter is dry and very hard to chew, we got freshly prepared starters after informed them abt the issue.\n\nShould i visit again ? Naaah.."), ('Rated 4.5', 'RATED\n  We chose to go to Curry with a K for a special occasion in the family, after quite a while.\nSaturday buffet lunch was extremely tasty and all the items were very delicately made.\nSpecial thanks to Mr.Jafar and team for making the occasion even more memorable, with a special cake and a never seen before "egg nest" dessert.'), ('Rated 4.0', "RATED\n  Nice decor nice maintained place...Good Ambience....food is good...I had been here on a friend's request and I seriously do not regret going there...food is good but nothing yummmm....will surely visit again...."), ('Rated 4.0', "RATED\n  Amazing people! Food was decent. Dessert was the best. I'd recommend the manchow soup and the baked gulab jamun. This restaurant has pretty decent pesto based pasta!"), ('Rated 3.5', 'RATED\n  Have tried the buffet here over lunch and the variety is huge. Food is okay probably bcoz u can never really expect too much from a buffet and their service and staff is good. Quite a casual ambience for a good lunch'), ('Rated 3.5', "RATED\n  Been there for some work .. doesn't have any kind of mood for a buffet lunch but after speaking with the manager and chef of the restaurant, decided to visit here d very next day.\n\nIts pretty gud spread, every starter is dry and very hard to chew, we got freshly prepared starters after informed them abt the issue.\n\nShould i visit again ? Naaah.."), ('Rated 4.5', 'RATED\n  We chose to go to Curry with a K for a special occasion in the family, after quite a while.\nSaturday buffet lunch was extremely tasty and all the items were very delicately made.\nSpecial thanks to Mr.Jafar and team for making the occasion even more memorable, with a special cake and a never seen before "egg nest" dessert.'), ('Rated 4.0', "RATED\n  Nice decor nice maintained place...Good Ambience....food is good...I had been here on a friend's request and I seriously do not regret going there...food is good but nothing yummmm....will surely visit again...."), ('Rated 4.0', "RATED\n  Amazing people! Food was decent. Dessert was the best. I'd recommend the manchow soup and the baked gulab jamun. This restaurant has pretty decent pesto based pasta!"), ('Rated 3.5', 'RATED\n  Have tried the buffet here over lunch and the variety is huge. Food is okay probably bcoz u can never really expect too much from a buffet and their service and staff is good. Quite a casual ambience for a good lunch'), ('Rated 3.5', "RATED\n  Been there for some work .. doesn't have any kind of mood for a buffet lunch but after speaking with the manager and chef of the restaurant, decided to visit here d very next day.\n\nIts pretty gud spread, every starter is dry and very hard to chew, we got freshly prepared starters after informed them abt the issue.\n\nShould i visit again ? Naaah.."), ('Rated 4.5', 'RATED\n  We chose to go to Curry with a K for a special occasion in the family, after quite a while.\nSaturday buffet lunch was extremely tasty and all the items were very delicately made.\nSpecial thanks to Mr.Jafar and team for making the occasion even more memorable, with a special cake and a never seen before "egg nest" dessert.'), ('Rated 4.0', "RATED\n  Nice decor nice maintained place...Good Ambience....food is good...I had been here on a friend's request and I seriously do not regret going there...food is good but nothing yummmm....will surely visit again...."), ('Rated 4.0', "RATED\n  Amazing people! Food was decent. Dessert was the best. I'd recommend the manchow soup and the baked gulab jamun. This restaurant has pretty decent pesto based pasta!"), ('Rated 3.5', 'RATED\n  Have tried the buffet here over lunch and the variety is huge. Food is okay probably bcoz u can never really expect too much from a buffet and their service and staff is good. Quite a casual ambience for a good lunch'), ('Rated 3.5', "RATED\n  Been there for some work .. doesn't have any kind of mood for a buffet lunch but after speaking with the manager and chef of the restaurant, decided to visit here d very next day.\n\nIts pretty gud spread, every starter is dry and very hard to chew, we got freshly prepared starters after informed them abt the issue.\n\nShould i visit again ? Naaah.."), ('Rated 4.5', 'RATED\n  We chose to go to Curry with a K for a special occasion in the family, after quite a while.\nSaturday buffet lunch was extremely tasty and all the items were very delicately made.\nSpecial thanks to Mr.Jafar and team for making the occasion even more memorable, with a special cake and a never seen before "egg nest" dessert.'), ('Rated 4.0', "RATED\n  Nice decor nice maintained place...Good Ambience....food is good...I had been here on a friend's request and I seriously do not regret going there...food is good but nothing yummmm....will surely visit again...."), ('Rated 4.0', "RATED\n  Amazing people! Food was decent. Dessert was the best. I'd recommend the manchow soup and the baked gulab jamun. This restaurant has pretty decent pesto based pasta!"), ('Rated 4.0', 'RATED\n  I visited here during the kannada rajhotshava at the time where the karnataka food festival was taking place.. Really enjoyed my buffet with authentic karnatakan cuisines...The service was really courteous.. I would especialy like to thank mr zameer and his team for making it an experience to cherish...'), ('Rated 4.0', 'RATED\n  Why St. Marks hotel?\n\n- A hidden "gem" - buffet place. You should visit them during their Rajasthani/Maharashtrian food festivals. It\'s worth it.\n\nAmbience: The decor is completely gujrati, right from the table spread to the lighting and the waiters attire. There\'s a nice ethnic feel to the whole place.\n\nFood: Absolute delight. They had a live chat corner, the chef seemed like he was flown in for this festival. Their dhokla was perfect, its hard to get the right consistency, not too juicy nor dry. Main course was complete with all gujrati dishes as there could be. Desserts were also massive! My picture will do the talking.\n\nIn case you feel this is another rajdhani, let me assure you it\'s way above that. The food is amazing, extremely rich in flavour & you will relish it deeply.\n\nPrice: The regular buffet price, around 700 per head with taxes. And it\'s worth. Food is authentic.'), ('Rated 5.0', 'RATED\n  Went to the Gujarati food festival. Lavish spread and delicious food! Very courteous staff. Look forward to their food festival every year. Good ambience as well.'), ('Rated 4.0', 'RATED\n  Excellent breakfast! This was my second visit and I must say I just love this place :)\nTo start with fruits, sandwiches, omelette, south Indian etc. are of top notch. Wonderful ambience for a heavy breakfast!'), ('Rated 4.0', 'RATED\n  I visited here during the kannada rajhotshava at the time where the karnataka food festival was taking place.. Really enjoyed my buffet with authentic karnatakan cuisines...The service was really courteous.. I would especialy like to thank mr zameer and his team for making it an experience to cherish...'), ('Rated 4.0', 'RATED\n  Why St. Marks hotel?\n\n- A hidden "gem" - buffet place. You should visit them during their Rajasthani/Maharashtrian food festivals. It\'s worth it.\n\nAmbience: The decor is completely gujrati, right from the table spread to the lighting and the waiters attire. There\'s a nice ethnic feel to the whole place.\n\nFood: Absolute delight. They had a live chat corner, the chef seemed like he was flown in for this festival. Their dhokla was perfect, its hard to get the right consistency, not too juicy nor dry. Main course was complete with all gujrati dishes as there could be. Desserts were also massive! My picture will do the talking.\n\nIn case you feel this is another rajdhani, let me assure you it\'s way above that. The food is amazing, extremely rich in flavour & you will relish it deeply.\n\nPrice: The regular buffet price, around 700 per head with taxes. And it\'s worth. Food is authentic.'), ('Rated 5.0', 'RATED\n  Went to the Gujarati food festival. Lavish spread and delicious food! Very courteous staff. Look forward to their food festival every year. Good ambience as well.'), ('Rated 4.0', 'RATED\n  Excellent breakfast! This was my second visit and I must say I just love this place :)\nTo start with fruits, sandwiches, omelette, south Indian etc. are of top notch. Wonderful ambience for a heavy breakfast!'), ('Rated 4.0', 'RATED\n  I visited here during the kannada rajhotshava at the time where the karnataka food festival was taking place.. Really enjoyed my buffet with authentic karnatakan cuisines...The service was really courteous.. I would especialy like to thank mr zameer and his team for making it an experience to cherish...'), ('Rated 4.0', 'RATED\n  Why St. Marks hotel?\n\n- A hidden "gem" - buffet place. You should visit them during their Rajasthani/Maharashtrian food festivals. It\'s worth it.\n\nAmbience: The decor is completely gujrati, right from the table spread to the lighting and the waiters attire. There\'s a nice ethnic feel to the whole place.\n\nFood: Absolute delight. They had a live chat corner, the chef seemed like he was flown in for this festival. Their dhokla was perfect, its hard to get the right consistency, not too juicy nor dry. Main course was complete with all gujrati dishes as there could be. Desserts were also massive! My picture will do the talking.\n\nIn case you feel this is another rajdhani, let me assure you it\'s way above that. The food is amazing, extremely rich in flavour & you will relish it deeply.\n\nPrice: The regular buffet price, around 700 per head with taxes. And it\'s worth. Food is authentic.'), ('Rated 5.0', 'RATED\n  Went to the Gujarati food festival. Lavish spread and delicious food! Very courteous staff. Look forward to their food festival every year. Good ambience as well.'), ('Rated 4.0', 'RATED\n  Excellent breakfast! This was my second visit and I must say I just love this place :)\nTo start with fruits, sandwiches, omelette, south Indian etc. are of top notch. Wonderful ambience for a heavy breakfast!'), ('Rated 4.0', 'RATED\n  I visited here during the kannada rajhotshava at the time where the karnataka food festival was taking place.. Really enjoyed my buffet with authentic karnatakan cuisines...The service was really courteous.. I would especialy like to thank mr zameer and his team for making it an experience to cherish...'), ('Rated 4.0', 'RATED\n  Why St. Marks hotel?\n\n- A hidden "gem" - buffet place. You should visit them during their Rajasthani/Maharashtrian food festivals. It\'s worth it.\n\nAmbience: The decor is completely gujrati, right from the table spread to the lighting and the waiters attire. There\'s a nice ethnic feel to the whole place.\n\nFood: Absolute delight. They had a live chat corner, the chef seemed like he was flown in for this festival. Their dhokla was perfect, its hard to get the right consistency, not too juicy nor dry. Main course was complete with all gujrati dishes as there could be. Desserts were also massive! My picture will do the talking.\n\nIn case you feel this is another rajdhani, let me assure you it\'s way above that. The food is amazing, extremely rich in flavour & you will relish it deeply.\n\nPrice: The regular buffet price, around 700 per head with taxes. And it\'s worth. Food is authentic.'), ('Rated 5.0', 'RATED\n  Went to the Gujarati food festival. Lavish spread and delicious food! Very courteous staff. Look forward to their food festival every year. Good ambience as well.'), ('Rated 4.0', 'RATED\n  Excellent breakfast! This was my second visit and I must say I just love this place :)\nTo start with fruits, sandwiches, omelette, south Indian etc. are of top notch. Wonderful ambience for a heavy breakfast!'), ('Rated 4.0', 'RATED\n  I visited here during the kannada rajhotshava at the time where the karnataka food festival was taking place.. Really enjoyed my buffet with authentic karnatakan cuisines...The service was really courteous.. I would especialy like to thank mr zameer and his team for making it an experience to cherish...'), ('Rated 4.0', 'RATED\n  Why St. Marks hotel?\n\n- A hidden "gem" - buffet place. You should visit them during their Rajasthani/Maharashtrian food festivals. It\'s worth it.\n\nAmbience: The decor is completely gujrati, right from the table spread to the lighting and the waiters attire. There\'s a nice ethnic feel to the whole place.\n\nFood: Absolute delight. They had a live chat corner, the chef seemed like he was flown in for this festival. Their dhokla was perfect, its hard to get the right consistency, not too juicy nor dry. Main course was complete with all gujrati dishes as there could be. Desserts were also massive! My picture will do the talking.\n\nIn case you feel this is another rajdhani, let me assure you it\'s way above that. The food is amazing, extremely rich in flavour & you will relish it deeply.\n\nPrice: The regular buffet price, around 700 per head with taxes. And it\'s worth. Food is authentic.'), ('Rated 5.0', 'RATED\n  Went to the Gujarati food festival. Lavish spread and delicious food! Very courteous staff. Look forward to their food festival every year. Good ambience as well.'), ('Rated 4.0', 'RATED\n  Excellent breakfast! This was my second visit and I must say I just love this place :)\nTo start with fruits, sandwiches, omelette, south Indian etc. are of top notch. Wonderful ambience for a heavy breakfast!'), ('Rated 3.5', 'RATED\n  Restaurant at the St. Mark Hotels. Good food quality, delicious and variety of items. nice ambiance too. the hotel/Restaurant is at the center of the city. Price is reasonable (525 + taxes for buffet lunch) Altogether nice experience, Good Spread  good for a one time visit'), ('Rated 4.0', "RATED\n  3rd year in a row, I went for the Maharashtrian food festival. Love it here. Keep it up team St. Mark's..Great going. Closest to authentic Maharashtra food right here in namma bengaluru"), ('Rated 5.0', "RATED\n  Went with my wife for lunch buffet to have a taste of Maharashtrian Food Festival at St. Mark's hotel. Food was really awesome. Menu had authentic Marathi food items like Puranpoli, Modak, Misal Pav, Vada pav and much more. Great ambience and nice service. Delighted to have authentic marathi Jevan in Namma Bengaluru."), ('Rated 4.0', 'RATED\n  Breakfast buffet is very good and has a nice variety. There are South Indian options as well as continental and omelettes, and there is also fruit and cereal and toast available. I loved the molagu podi idli with tomato chutney just as much as I loved the bacon. Note: although it lasts until 10, I would suggest going no later than 9, as the fruits and such start to run out.'), ('Rated 3.5', 'RATED\n  Restaurant at the St. Mark Hotels. Good food quality, delicious and variety of items. nice ambiance too. the hotel/Restaurant is at the center of the city. Price is reasonable (525 + taxes for buffet lunch) Altogether nice experience, Good Spread  good for a one time visit'), ('Rated 4.0', "RATED\n  3rd year in a row, I went for the Maharashtrian food festival. Love it here. Keep it up team St. Mark's..Great going. Closest to authentic Maharashtra food right here in namma bengaluru"), ('Rated 5.0', "RATED\n  Went with my wife for lunch buffet to have a taste of Maharashtrian Food Festival at St. Mark's hotel. Food was really awesome. Menu had authentic Marathi food items like Puranpoli, Modak, Misal Pav, Vada pav and much more. Great ambience and nice service. Delighted to have authentic marathi Jevan in Namma Bengaluru."), ('Rated 4.0', 'RATED\n  Breakfast buffet is very good and has a nice variety. There are South Indian options as well as continental and omelettes, and there is also fruit and cereal and toast available. I loved the molagu podi idli with tomato chutney just as much as I loved the bacon. Note: although it lasts until 10, I would suggest going no later than 9, as the fruits and such start to run out.'), ('Rated 3.5', 'RATED\n  Restaurant at the St. Mark Hotels. Good food quality, delicious and variety of items. nice ambiance too. the hotel/Restaurant is at the center of the city. Price is reasonable (525 + taxes for buffet lunch) Altogether nice experience, Good Spread  good for a one time visit'), ('Rated 4.0', "RATED\n  3rd year in a row, I went for the Maharashtrian food festival. Love it here. Keep it up team St. Mark's..Great going. Closest to authentic Maharashtra food right here in namma bengaluru"), ('Rated 5.0', "RATED\n  Went with my wife for lunch buffet to have a taste of Maharashtrian Food Festival at St. Mark's hotel. Food was really awesome. Menu had authentic Marathi food items like Puranpoli, Modak, Misal Pav, Vada pav and much more. Great ambience and nice service. Delighted to have authentic marathi Jevan in Namma Bengaluru."), ('Rated 4.0', 'RATED\n  Breakfast buffet is very good and has a nice variety. There are South Indian options as well as continental and omelettes, and there is also fruit and cereal and toast available. I loved the molagu podi idli with tomato chutney just as much as I loved the bacon. Note: although it lasts until 10, I would suggest going no later than 9, as the fruits and such start to run out.'), ('Rated 3.5', 'RATED\n  Restaurant at the St. Mark Hotels. Good food quality, delicious and variety of items. nice ambiance too. the hotel/Restaurant is at the center of the city. Price is reasonable (525 + taxes for buffet lunch) Altogether nice experience, Good Spread  good for a one time visit'), ('Rated 4.0', "RATED\n  3rd year in a row, I went for the Maharashtrian food festival. Love it here. Keep it up team St. Mark's..Great going. Closest to authentic Maharashtra food right here in namma bengaluru"), ('Rated 5.0', "RATED\n  Went with my wife for lunch buffet to have a taste of Maharashtrian Food Festival at St. Mark's hotel. Food was really awesome. Menu had authentic Marathi food items like Puranpoli, Modak, Misal Pav, Vada pav and much more. Great ambience and nice service. Delighted to have authentic marathi Jevan in Namma Bengaluru."), ('Rated 4.0', 'RATED\n  Breakfast buffet is very good and has a nice variety. There are South Indian options as well as continental and omelettes, and there is also fruit and cereal and toast available. I loved the molagu podi idli with tomato chutney just as much as I loved the bacon. Note: although it lasts until 10, I would suggest going no later than 9, as the fruits and such start to run out.'), ('Rated 3.5', 'RATED\n  Restaurant at the St. Mark Hotels. Good food quality, delicious and variety of items. nice ambiance too. the hotel/Restaurant is at the center of the city. Price is reasonable (525 + taxes for buffet lunch) Altogether nice experience, Good Spread  good for a one time visit'), ('Rated 4.0', "RATED\n  3rd year in a row, I went for the Maharashtrian food festival. Love it here. Keep it up team St. Mark's..Great going. Closest to authentic Maharashtra food right here in namma bengaluru"), ('Rated 5.0', "RATED\n  Went with my wife for lunch buffet to have a taste of Maharashtrian Food Festival at St. Mark's hotel. Food was really awesome. Menu had authentic Marathi food items like Puranpoli, Modak, Misal Pav, Vada pav and much more. Great ambience and nice service. Delighted to have authentic marathi Jevan in Namma Bengaluru."), ('Rated 4.0', 'RATED\n  Breakfast buffet is very good and has a nice variety. There are South Indian options as well as continental and omelettes, and there is also fruit and cereal and toast available. I loved the molagu podi idli with tomato chutney just as much as I loved the bacon. Note: although it lasts until 10, I would suggest going no later than 9, as the fruits and such start to run out.'), ('Rated 4.0', 'RATED\n  18 of us went for a birthday treat. Even though there was no dinner buffet, they arranged for us on request with a complementary birthday cake. There service was very good. The food quality and the ambiance was awesome. The menu in the buffet was good with a couple of starters, main-course, but less desserts. We suggested them to keep more options for desserts.  Overall everything was good and we had a nice time there. After buffet we had a nice photo shoot inside hotel which is having beautiful interiors.....\nThank you Curry with A "K"....'), ('Rated 4.0', 'RATED\n  Everything here is perfect! Great food, nice ambience, well maintained and the way they treat their guests is very commendable. Highly recommend. Kudos to Mr. Menon and his team.'), ('Rated 4.0', "RATED\n  There are very few restaurants, that I would put in my 'to be visited with family' list, whenever I had  sponsered meal. St Marks is one of those places. I was attending the business meet at the hotel and food was a part of the package.  Two consecutive days... but, no regrets, in fact, I made a mental note to visit this place with family again.\n\nVery well balanced spread of Indian and non Indian dishes. They cared to serve the local delicacies, which I would rate high and  feel thats something is a very good practice. (They had the fine semolia circles to be dipped in the sweet milk in their dessert spread, which is  a Bangalorean pride recipe)\n\nAll in all a very nice food. I would rate the food  here and not taking whether its worth the bucks"), ('Rated 2.5', 'RATED\n  This was below average food quality. Compared to cost, it was not good. Quality of food was below average for sure and cost was too high. You will mostly see foregn nationals staying here due to close proximity to IT parks area and maybe, one reason for cost. Service is also poor and they took 30 mins for one of the dish when I stayed here (in their hotel). They have one big thali which has all variety of south indian food and is good if you are accompanied by your foreign friend/colleagues (which was the case for me).  But again, that too, is very costly! (more than 600 bucks!).\n\nDeserts section was good though and had good enough variety but they only have ala carte in the dinner and buffet for lunch - which is very odd.'), ('Rated 3.5', 'RATED\n  We went for a farewell lunch 15 of us and were very happy with the ambience. The food spread was very good especially the desserts.\nThough some of us were disappointed not to find noodles and pasta in the menu, we were very pleased with the food both taste wise and variety wise.\nI am waiting to visit them on one of the food festival weeks.'), ('Rated 4.0', 'RATED\n  18 of us went for a birthday treat. Even though there was no dinner buffet, they arranged for us on request with a complementary birthday cake. There service was very good. The food quality and the ambiance was awesome. The menu in the buffet was good with a couple of starters, main-course, but less desserts. We suggested them to keep more options for desserts.  Overall everything was good and we had a nice time there. After buffet we had a nice photo shoot inside hotel which is having beautiful interiors.....\nThank you Curry with A "K"....'), ('Rated 4.0', 'RATED\n  Everything here is perfect! Great food, nice ambience, well maintained and the way they treat their guests is very commendable. Highly recommend. Kudos to Mr. Menon and his team.'), ('Rated 4.0', "RATED\n  There are very few restaurants, that I would put in my 'to be visited with family' list, whenever I had  sponsered meal. St Marks is one of those places. I was attending the business meet at the hotel and food was a part of the package.  Two consecutive days... but, no regrets, in fact, I made a mental note to visit this place with family again.\n\nVery well balanced spread of Indian and non Indian dishes. They cared to serve the local delicacies, which I would rate high and  feel thats something is a very good practice. (They had the fine semolia circles to be dipped in the sweet milk in their dessert spread, which is  a Bangalorean pride recipe)\n\nAll in all a very nice food. I would rate the food  here and not taking whether its worth the bucks"), ('Rated 2.5', 'RATED\n  This was below average food quality. Compared to cost, it was not good. Quality of food was below average for sure and cost was too high. You will mostly see foregn nationals staying here due to close proximity to IT parks area and maybe, one reason for cost. Service is also poor and they took 30 mins for one of the dish when I stayed here (in their hotel). They have one big thali which has all variety of south indian food and is good if you are accompanied by your foreign friend/colleagues (which was the case for me).  But again, that too, is very costly! (more than 600 bucks!).\n\nDeserts section was good though and had good enough variety but they only have ala carte in the dinner and buffet for lunch - which is very odd.'), ('Rated 3.5', 'RATED\n  We went for a farewell lunch 15 of us and were very happy with the ambience. The food spread was very good especially the desserts.\nThough some of us were disappointed not to find noodles and pasta in the menu, we were very pleased with the food both taste wise and variety wise.\nI am waiting to visit them on one of the food festival weeks.'), ('Rated 4.0', 'RATED\n  18 of us went for a birthday treat. Even though there was no dinner buffet, they arranged for us on request with a complementary birthday cake. There service was very good. The food quality and the ambiance was awesome. The menu in the buffet was good with a couple of starters, main-course, but less desserts. We suggested them to keep more options for desserts.  Overall everything was good and we had a nice time there. After buffet we had a nice photo shoot inside hotel which is having beautiful interiors.....\nThank you Curry with A "K"....'), ('Rated 4.0', 'RATED\n  Everything here is perfect! Great food, nice ambience, well maintained and the way they treat their guests is very commendable. Highly recommend. Kudos to Mr. Menon and his team.'), ('Rated 4.0', "RATED\n  There are very few restaurants, that I would put in my 'to be visited with family' list, whenever I had  sponsered meal. St Marks is one of those places. I was attending the business meet at the hotel and food was a part of the package.  Two consecutive days... but, no regrets, in fact, I made a mental note to visit this place with family again.\n\nVery well balanced spread of Indian and non Indian dishes. They cared to serve the local delicacies, which I would rate high and  feel thats something is a very good practice. (They had the fine semolia circles to be dipped in the sweet milk in their dessert spread, which is  a Bangalorean pride recipe)\n\nAll in all a very nice food. I would rate the food  here and not taking whether its worth the bucks"), ('Rated 2.5', 'RATED\n  This was below average food quality. Compared to cost, it was not good. Quality of food was below average for sure and cost was too high. You will mostly see foregn nationals staying here due to close proximity to IT parks area and maybe, one reason for cost. Service is also poor and they took 30 mins for one of the dish when I stayed here (in their hotel). They have one big thali which has all variety of south indian food and is good if you are accompanied by your foreign friend/colleagues (which was the case for me).  But again, that too, is very costly! (more than 600 bucks!).\n\nDeserts section was good though and had good enough variety but they only have ala carte in the dinner and buffet for lunch - which is very odd.'), ('Rated 3.5', 'RATED\n  We went for a farewell lunch 15 of us and were very happy with the ambience. The food spread was very good especially the desserts.\nThough some of us were disappointed not to find noodles and pasta in the menu, we were very pleased with the food both taste wise and variety wise.\nI am waiting to visit them on one of the food festival weeks.'), ('Rated 4.0', 'RATED\n  18 of us went for a birthday treat. Even though there was no dinner buffet, they arranged for us on request with a complementary birthday cake. There service was very good. The food quality and the ambiance was awesome. The menu in the buffet was good with a couple of starters, main-course, but less desserts. We suggested them to keep more options for desserts.  Overall everything was good and we had a nice time there. After buffet we had a nice photo shoot inside hotel which is having beautiful interiors.....\nThank you Curry with A "K"....'), ('Rated 4.0', 'RATED\n  Everything here is perfect! Great food, nice ambience, well maintained and the way they treat their guests is very commendable. Highly recommend. Kudos to Mr. Menon and his team.'), ('Rated 4.0', "RATED\n  There are very few restaurants, that I would put in my 'to be visited with family' list, whenever I had  sponsered meal. St Marks is one of those places. I was attending the business meet at the hotel and food was a part of the package.  Two consecutive days... but, no regrets, in fact, I made a mental note to visit this place with family again.\n\nVery well balanced spread of Indian and non Indian dishes. They cared to serve the local delicacies, which I would rate high and  feel thats something is a very good practice. (They had the fine semolia circles to be dipped in the sweet milk in their dessert spread, which is  a Bangalorean pride recipe)\n\nAll in all a very nice food. I would rate the food  here and not taking whether its worth the bucks"), ('Rated 2.5', 'RATED\n  This was below average food quality. Compared to cost, it was not good. Quality of food was below average for sure and cost was too high. You will mostly see foregn nationals staying here due to close proximity to IT parks area and maybe, one reason for cost. Service is also poor and they took 30 mins for one of the dish when I stayed here (in their hotel). They have one big thali which has all variety of south indian food and is good if you are accompanied by your foreign friend/colleagues (which was the case for me).  But again, that too, is very costly! (more than 600 bucks!).\n\nDeserts section was good though and had good enough variety but they only have ala carte in the dinner and buffet for lunch - which is very odd.'), ('Rated 3.5', 'RATED\n  We went for a farewell lunch 15 of us and were very happy with the ambience. The food spread was very good especially the desserts.\nThough some of us were disappointed not to find noodles and pasta in the menu, we were very pleased with the food both taste wise and variety wise.\nI am waiting to visit them on one of the food festival weeks.'), ('Rated 4.0', 'RATED\n  18 of us went for a birthday treat. Even though there was no dinner buffet, they arranged for us on request with a complementary birthday cake. There service was very good. The food quality and the ambiance was awesome. The menu in the buffet was good with a couple of starters, main-course, but less desserts. We suggested them to keep more options for desserts.  Overall everything was good and we had a nice time there. After buffet we had a nice photo shoot inside hotel which is having beautiful interiors.....\nThank you Curry with A "K"....'), ('Rated 4.0', 'RATED\n  Everything here is perfect! Great food, nice ambience, well maintained and the way they treat their guests is very commendable. Highly recommend. Kudos to Mr. Menon and his team.'), ('Rated 4.0', "RATED\n  There are very few restaurants, that I would put in my 'to be visited with family' list, whenever I had  sponsered meal. St Marks is one of those places. I was attending the business meet at the hotel and food was a part of the package.  Two consecutive days... but, no regrets, in fact, I made a mental note to visit this place with family again.\n\nVery well balanced spread of Indian and non Indian dishes. They cared to serve the local delicacies, which I would rate high and  feel thats something is a very good practice. (They had the fine semolia circles to be dipped in the sweet milk in their dessert spread, which is  a Bangalorean pride recipe)\n\nAll in all a very nice food. I would rate the food  here and not taking whether its worth the bucks"), ('Rated 2.5', 'RATED\n  This was below average food quality. Compared to cost, it was not good. Quality of food was below average for sure and cost was too high. You will mostly see foregn nationals staying here due to close proximity to IT parks area and maybe, one reason for cost. Service is also poor and they took 30 mins for one of the dish when I stayed here (in their hotel). They have one big thali which has all variety of south indian food and is good if you are accompanied by your foreign friend/colleagues (which was the case for me).  But again, that too, is very costly! (more than 600 bucks!).\n\nDeserts section was good though and had good enough variety but they only have ala carte in the dinner and buffet for lunch - which is very odd.'), ('Rated 3.5', 'RATED\n  We went for a farewell lunch 15 of us and were very happy with the ambience. The food spread was very good especially the desserts.\nThough some of us were disappointed not to find noodles and pasta in the menu, we were very pleased with the food both taste wise and variety wise.\nI am waiting to visit them on one of the food festival weeks.'), ('Rated 3.0', 'RATED\n  average food..Only fish starter were good..the other starters were just ok.on desserts the jamun was good..others didn impress me much.. the biriyani was also ok ok'), ('Rated 2.0', "RATED\n  Gujarati food festival with the chef from Rajkot- was really excited ...as it is difficult to find Gujarati food in Bangalore. But it was a let down. The variety was humongous, the service friendly but the food did not live up to the expectations. It was just too sweet!! I am a Gujarati so I am exposed to the sweetness in Gujju food but I don't know why- I did not like it ..maybe my palette has changed or the food was not good enough..I dunno ..but what I loved at the end was a nice gift hamper from Gujarat tourism which had a lot of information regarding Gujarat! Padharo Gujarat tame :)"), ('Rated 2.5', "RATED\n  Old world charm is what will drag people into this place. It has passable food. But considering the competition around, this bloke does not stand a chance! St Mark's hotel itself looks run down and the cutlery/ambiance is very old school. Just have it once for nostalgia sake! Bon Appetit?"), ('Rated 3.0', 'RATED\n  Went for a lunch after hearing a lot abt this place. The buffet spread was quite decent with varities for a vegetarian like me. Loved the panner roll which was coated with papad bits. Very innovative. But the experience was ruined by a bunch of ladies having their kitty party cackling like a gang of witches. Even after complaining to the mngt,there was no use. But apart from this, their service was good.'), ('Rated 3.0', 'RATED\n  average food..Only fish starter were good..the other starters were just ok.on desserts the jamun was good..others didn impress me much.. the biriyani was also ok ok'), ('Rated 2.0', "RATED\n  Gujarati food festival with the chef from Rajkot- was really excited ...as it is difficult to find Gujarati food in Bangalore. But it was a let down. The variety was humongous, the service friendly but the food did not live up to the expectations. It was just too sweet!! I am a Gujarati so I am exposed to the sweetness in Gujju food but I don't know why- I did not like it ..maybe my palette has changed or the food was not good enough..I dunno ..but what I loved at the end was a nice gift hamper from Gujarat tourism which had a lot of information regarding Gujarat! Padharo Gujarat tame :)"), ('Rated 2.5', "RATED\n  Old world charm is what will drag people into this place. It has passable food. But considering the competition around, this bloke does not stand a chance! St Mark's hotel itself looks run down and the cutlery/ambiance is very old school. Just have it once for nostalgia sake! Bon Appetit?"), ('Rated 3.0', 'RATED\n  Went for a lunch after hearing a lot abt this place. The buffet spread was quite decent with varities for a vegetarian like me. Loved the panner roll which was coated with papad bits. Very innovative. But the experience was ruined by a bunch of ladies having their kitty party cackling like a gang of witches. Even after complaining to the mngt,there was no use. But apart from this, their service was good.'), ('Rated 3.0', 'RATED\n  average food..Only fish starter were good..the other starters were just ok.on desserts the jamun was good..others didn impress me much.. the biriyani was also ok ok'), ('Rated 2.0', "RATED\n  Gujarati food festival with the chef from Rajkot- was really excited ...as it is difficult to find Gujarati food in Bangalore. But it was a let down. The variety was humongous, the service friendly but the food did not live up to the expectations. It was just too sweet!! I am a Gujarati so I am exposed to the sweetness in Gujju food but I don't know why- I did not like it ..maybe my palette has changed or the food was not good enough..I dunno ..but what I loved at the end was a nice gift hamper from Gujarat tourism which had a lot of information regarding Gujarat! Padharo Gujarat tame :)"), ('Rated 2.5', "RATED\n  Old world charm is what will drag people into this place. It has passable food. But considering the competition around, this bloke does not stand a chance! St Mark's hotel itself looks run down and the cutlery/ambiance is very old school. Just have it once for nostalgia sake! Bon Appetit?"), ('Rated 3.0', 'RATED\n  Went for a lunch after hearing a lot abt this place. The buffet spread was quite decent with varities for a vegetarian like me. Loved the panner roll which was coated with papad bits. Very innovative. But the experience was ruined by a bunch of ladies having their kitty party cackling like a gang of witches. Even after complaining to the mngt,there was no use. But apart from this, their service was good.'), ('Rated 3.0', 'RATED\n  average food..Only fish starter were good..the other starters were just ok.on desserts the jamun was good..others didn impress me much.. the biriyani was also ok ok'), ('Rated 2.0', "RATED\n  Gujarati food festival with the chef from Rajkot- was really excited ...as it is difficult to find Gujarati food in Bangalore. But it was a let down. The variety was humongous, the service friendly but the food did not live up to the expectations. It was just too sweet!! I am a Gujarati so I am exposed to the sweetness in Gujju food but I don't know why- I did not like it ..maybe my palette has changed or the food was not good enough..I dunno ..but what I loved at the end was a nice gift hamper from Gujarat tourism which had a lot of information regarding Gujarat! Padharo Gujarat tame :)"), ('Rated 2.5', "RATED\n  Old world charm is what will drag people into this place. It has passable food. But considering the competition around, this bloke does not stand a chance! St Mark's hotel itself looks run down and the cutlery/ambiance is very old school. Just have it once for nostalgia sake! Bon Appetit?"), ('Rated 3.0', 'RATED\n  Went for a lunch after hearing a lot abt this place. The buffet spread was quite decent with varities for a vegetarian like me. Loved the panner roll which was coated with papad bits. Very innovative. But the experience was ruined by a bunch of ladies having their kitty party cackling like a gang of witches. Even after complaining to the mngt,there was no use. But apart from this, their service was good.'), ('Rated 4.0', 'RATED\n  This hotel has been completely renovated and it looks classy! The food quality is good and the options are descent! Food tastes good.. Service and hospitality is really good. Mr.Upendra shanbhag, the manager at the restaurant was very good at guiding us on the menu! Overall the service and food quality is good and food tastes very good.. Visit once to enjoy it!.'), ('Rated 3.5', "RATED\n  accidental walk-ins - as the staff probably would have counted us! St. Marks Hotel's Curry with K was an experience for me and my freind (both vegetarians). Cool service. Good food with multiple a la carte menus. Colonial architecture. Almost wanted to stay back after we grabbed their tariff card. Wish they were open as a 24 hr coffee shop! Taj's STIR and Royal Orchid's Pinxx will have some 'healthy' competition, for sure."), ('Rated 3.5', "RATED\n  I took my parents here for an early Mother's day treat. It was also the last day of Maharashtrian food festival. The buffet spread was pretty good - lots of desserts, namkeen and papads! (May be I should go on a month long vacation to Maharashtra! :-)) Sago vada, vada pav, methi subzi, moong khichdi + kadi, aamras, basundi and plantain chaat were my favorites.\n\nAmbiance - 4/5\nFood - 3.5/5 (bhindi was slightly old and unchewable, some of the gravies were a little oily)\nValue for money - 3.5/5\nService - 3.5/5\n\nI'm definitely going to go back again when they have their Gujrati and Rajasthani festival!"), ('Rated 3.5', 'RATED\n  Was here on 1st of May for the Maharashtrian Food Festival. Overall ambience of the place is good. Waiting area in the hotel is really nice. Coming to food, the buffet spread was huge! Food was tasty. Aamras, Shrikhand, masala bhaat were the highlights. Service could have been a bit better. Waiters were just roaming around the table not knowing what to do! :) Overall, it was a pleasant experience. Would certainly visit again.\n\nFood - 4/5\nAmbience 3.5/5\nService 3/5\nOverall - 3.5'), ('Rated 3.5', 'RATED\n  I had been here last Saturday I chose for the buffet first the ambience is cool & lobby is very whitish & poush. They served Honey Lemon Drink as welcome drink later went for veg soup & in starter there was Keralan Chicken Dish, Pepper Chicken which was great & Paddu as veg starter. There was pasta too. For main course there were Chole Masala, Paneer Makhani, Lamb Palak only one non veg dish, Dal Makhani & other dishes with assorted breads & variety of salads.\nIn rice there was Corn Pulao & Egg Biryani which was tasty. In dessert section there was Gulab Jamoon, Brownie, Caramel Custard, Ghee Mysore Pak ,\nKaju Sweet & others.\nThe ambience of this restaurant is small,&here the service should be improved a lot as the waiters are not attentive should call them every time to pour water & get the things.\nRest everything fine nice & very clean poush Hotel.\nThe buffet comes around Rs. 536 all inclusive of tax worth visit.'), ('Rated 4.0', 'RATED\n  This hotel has been completely renovated and it looks classy! The food quality is good and the options are descent! Food tastes good.. Service and hospitality is really good. Mr.Upendra shanbhag, the manager at the restaurant was very good at guiding us on the menu! Overall the service and food quality is good and food tastes very good.. Visit once to enjoy it!.'), ('Rated 3.5', "RATED\n  accidental walk-ins - as the staff probably would have counted us! St. Marks Hotel's Curry with K was an experience for me and my freind (both vegetarians). Cool service. Good food with multiple a la carte menus. Colonial architecture. Almost wanted to stay back after we grabbed their tariff card. Wish they were open as a 24 hr coffee shop! Taj's STIR and Royal Orchid's Pinxx will have some 'healthy' competition, for sure."), ('Rated 3.5', "RATED\n  I took my parents here for an early Mother's day treat. It was also the last day of Maharashtrian food festival. The buffet spread was pretty good - lots of desserts, namkeen and papads! (May be I should go on a month long vacation to Maharashtra! :-)) Sago vada, vada pav, methi subzi, moong khichdi + kadi, aamras, basundi and plantain chaat were my favorites.\n\nAmbiance - 4/5\nFood - 3.5/5 (bhindi was slightly old and unchewable, some of the gravies were a little oily)\nValue for money - 3.5/5\nService - 3.5/5\n\nI'm definitely going to go back again when they have their Gujrati and Rajasthani festival!"), ('Rated 3.5', 'RATED\n  Was here on 1st of May for the Maharashtrian Food Festival. Overall ambience of the place is good. Waiting area in the hotel is really nice. Coming to food, the buffet spread was huge! Food was tasty. Aamras, Shrikhand, masala bhaat were the highlights. Service could have been a bit better. Waiters were just roaming around the table not knowing what to do! :) Overall, it was a pleasant experience. Would certainly visit again.\n\nFood - 4/5\nAmbience 3.5/5\nService 3/5\nOverall - 3.5'), ('Rated 3.5', 'RATED\n  I had been here last Saturday I chose for the buffet first the ambience is cool & lobby is very whitish & poush. They served Honey Lemon Drink as welcome drink later went for veg soup & in starter there was Keralan Chicken Dish, Pepper Chicken which was great & Paddu as veg starter. There was pasta too. For main course there were Chole Masala, Paneer Makhani, Lamb Palak only one non veg dish, Dal Makhani & other dishes with assorted breads & variety of salads.\nIn rice there was Corn Pulao & Egg Biryani which was tasty. In dessert section there was Gulab Jamoon, Brownie, Caramel Custard, Ghee Mysore Pak ,\nKaju Sweet & others.\nThe ambience of this restaurant is small,&here the service should be improved a lot as the waiters are not attentive should call them every time to pour water & get the things.\nRest everything fine nice & very clean poush Hotel.\nThe buffet comes around Rs. 536 all inclusive of tax worth visit.'), ('Rated 4.0', 'RATED\n  This hotel has been completely renovated and it looks classy! The food quality is good and the options are descent! Food tastes good.. Service and hospitality is really good. Mr.Upendra shanbhag, the manager at the restaurant was very good at guiding us on the menu! Overall the service and food quality is good and food tastes very good.. Visit once to enjoy it!.'), ('Rated 3.5', "RATED\n  accidental walk-ins - as the staff probably would have counted us! St. Marks Hotel's Curry with K was an experience for me and my freind (both vegetarians). Cool service. Good food with multiple a la carte menus. Colonial architecture. Almost wanted to stay back after we grabbed their tariff card. Wish they were open as a 24 hr coffee shop! Taj's STIR and Royal Orchid's Pinxx will have some 'healthy' competition, for sure."), ('Rated 3.5', "RATED\n  I took my parents here for an early Mother's day treat. It was also the last day of Maharashtrian food festival. The buffet spread was pretty good - lots of desserts, namkeen and papads! (May be I should go on a month long vacation to Maharashtra! :-)) Sago vada, vada pav, methi subzi, moong khichdi + kadi, aamras, basundi and plantain chaat were my favorites.\n\nAmbiance - 4/5\nFood - 3.5/5 (bhindi was slightly old and unchewable, some of the gravies were a little oily)\nValue for money - 3.5/5\nService - 3.5/5\n\nI'm definitely going to go back again when they have their Gujrati and Rajasthani festival!"), ('Rated 3.5', 'RATED\n  Was here on 1st of May for the Maharashtrian Food Festival. Overall ambience of the place is good. Waiting area in the hotel is really nice. Coming to food, the buffet spread was huge! Food was tasty. Aamras, Shrikhand, masala bhaat were the highlights. Service could have been a bit better. Waiters were just roaming around the table not knowing what to do! :) Overall, it was a pleasant experience. Would certainly visit again.\n\nFood - 4/5\nAmbience 3.5/5\nService 3/5\nOverall - 3.5'), ('Rated 3.5', 'RATED\n  I had been here last Saturday I chose for the buffet first the ambience is cool & lobby is very whitish & poush. They served Honey Lemon Drink as welcome drink later went for veg soup & in starter there was Keralan Chicken Dish, Pepper Chicken which was great & Paddu as veg starter. There was pasta too. For main course there were Chole Masala, Paneer Makhani, Lamb Palak only one non veg dish, Dal Makhani & other dishes with assorted breads & variety of salads.\nIn rice there was Corn Pulao & Egg Biryani which was tasty. In dessert section there was Gulab Jamoon, Brownie, Caramel Custard, Ghee Mysore Pak ,\nKaju Sweet & others.\nThe ambience of this restaurant is small,&here the service should be improved a lot as the waiters are not attentive should call them every time to pour water & get the things.\nRest everything fine nice & very clean poush Hotel.\nThe buffet comes around Rs. 536 all inclusive of tax worth visit.'), ('Rated 4.0', 'RATED\n  This hotel has been completely renovated and it looks classy! The food quality is good and the options are descent! Food tastes good.. Service and hospitality is really good. Mr.Upendra shanbhag, the manager at the restaurant was very good at guiding us on the menu! Overall the service and food quality is good and food tastes very good.. Visit once to enjoy it!.'), ('Rated 3.5', "RATED\n  accidental walk-ins - as the staff probably would have counted us! St. Marks Hotel's Curry with K was an experience for me and my freind (both vegetarians). Cool service. Good food with multiple a la carte menus. Colonial architecture. Almost wanted to stay back after we grabbed their tariff card. Wish they were open as a 24 hr coffee shop! Taj's STIR and Royal Orchid's Pinxx will have some 'healthy' competition, for sure."), ('Rated 3.5', "RATED\n  I took my parents here for an early Mother's day treat. It was also the last day of Maharashtrian food festival. The buffet spread was pretty good - lots of desserts, namkeen and papads! (May be I should go on a month long vacation to Maharashtra! :-)) Sago vada, vada pav, methi subzi, moong khichdi + kadi, aamras, basundi and plantain chaat were my favorites.\n\nAmbiance - 4/5\nFood - 3.5/5 (bhindi was slightly old and unchewable, some of the gravies were a little oily)\nValue for money - 3.5/5\nService - 3.5/5\n\nI'm definitely going to go back again when they have their Gujrati and Rajasthani festival!"), ('Rated 3.5', 'RATED\n  Was here on 1st of May for the Maharashtrian Food Festival. Overall ambience of the place is good. Waiting area in the hotel is really nice. Coming to food, the buffet spread was huge! Food was tasty. Aamras, Shrikhand, masala bhaat were the highlights. Service could have been a bit better. Waiters were just roaming around the table not knowing what to do! :) Overall, it was a pleasant experience. Would certainly visit again.\n\nFood - 4/5\nAmbience 3.5/5\nService 3/5\nOverall - 3.5'), ('Rated 3.5', 'RATED\n  I had been here last Saturday I chose for the buffet first the ambience is cool & lobby is very whitish & poush. They served Honey Lemon Drink as welcome drink later went for veg soup & in starter there was Keralan Chicken Dish, Pepper Chicken which was great & Paddu as veg starter. There was pasta too. For main course there were Chole Masala, Paneer Makhani, Lamb Palak only one non veg dish, Dal Makhani & other dishes with assorted breads & variety of salads.\nIn rice there was Corn Pulao & Egg Biryani which was tasty. In dessert section there was Gulab Jamoon, Brownie, Caramel Custard, Ghee Mysore Pak ,\nKaju Sweet & others.\nThe ambience of this restaurant is small,&here the service should be improved a lot as the waiters are not attentive should call them every time to pour water & get the things.\nRest everything fine nice & very clean poush Hotel.\nThe buffet comes around Rs. 536 all inclusive of tax worth visit.'), ('Rated 3.0', 'RATED\n  I had gone for office lunch here which was the buffet. The vegetarian variety was quite good. A very quiet surrounding however, but the food was good enough. Salads had a great variety. The buffet had mostly Indian and a couple of continental dishes. The desserts were tasty too. But like any other buffet, you always end up getting confused what to eat and what not to after seeing the variety. But each one to his own! Cheers! If you found my review useful give me a follow as I am a new foodie on Zomato but will sure go on with more reviews!')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
I didnt knw they reopened it,\nGood service and d place s pretty neat and calm.\nHad paneer palak , was gud wid parotta.\nHope dey wud cme up wid bdf'), ('Rated 4.5', "RATED\n  I didn't even know this cafe existed!! It's a lovely place which offers budget friendly yummy kerala dishes.\nWe ordered appam and chicken ghee roast and let me tell you, that chicken was YUM.\nAlso had beef fry, which was delicious too.\nDo visit it.\nIt's the only decent cafe in the whole kudlu Gate area."), ('Rated 3.0', 'RATED\n  The porotta from here is so crisp nd yummy!! Make sure you buy beef curry to go along with this. It makes a great treat on a chilly day in Bangalore.'), ('Rated 3.5', "RATED\n  Slightly better set up than the common 'Kerala Mess' bachelor eateries that we see in Bangalore. If you are not too particular about the air conditioning and staff with uniforms etc, you can even take your family there. The place is clean and tidy with decent contemporary interiors\nThe quality of the food is very good and the taste really does justification to authentic Kerala flavours.\nPrice isn't too high neither is too cheap. You won't feel that you are charged more for the quantity and the quality.\nA very good option for the Kerala food lovers staying around Singasandra."), ('Rated 4.5', 'RATED\n  Awesome Kerala food and good, neat place to hang out. Good options to choose from and we loved the ambience. Finally our family found a nice place for dining!!'), ('Rated 4.5', 'RATED\n  The food was absolutely wonderful, from preparation to presentation, very pleasing . The service was good as well. I would recommend it to my friends who like Kerala cuisine.'), ('Rated 4.5', 'RATED\n  very good service , food, neatness and all ,actually i liked the food a lot. A good option for keralites who likes authentic style food....unbeatable biriyani which s more than enough for a fooddie....'), ('Rated 4.5', 'RATED\n  Had a good experience there with my friends.. Good kerla food. Clean and tidy restaurant. Hope to visit again. I hope that they will start with there delivery service soon'), ('Rated 5.0', 'RATED\n  A nice restaurant with good ambiance. Kerala chicken biriyani was very good. Would like to try out other items as well. :) One of the best Kerala restaurant in this area..'), ('Rated 3.5', 'RATED\n  The coffee in here a must try and I bet it will be one of the best you will ever have. The restaurant is really nice and well maintained. The owner is a Keralite and is very friendly. They serve mainly Kerala food. The Appam was really soft and delicious. They serve the most authentic and crispy Kerala Porottas. This place is bit expensive for daily dining. If I have to point out one thing which they have to improve then it will the service.\n\nsreeragnk.com'), ('Rated 5.0', 'RATED\n  The only good neat and clean malayali restaurant in this locality.... food is good... though there is not much to chose from, the things available are tasty....the traditional kerala taste is something that is a charecteristic of all the dishes.....Though the price may seem a bit on the higher note, for the ambience it provides, its worth the money u pay....')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
Even after mentioned in instruction they did not write it n cake, also called them after ordering, so that they dont forget, but still they didn't wrote on it. Worst cake shop."), ('Rated 3.0', 'RATED\n  Just another cake shop. Saw the good ratings so wanted to give it a try but DidnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t like the cake much. It was loaded with whipped cream. Which we personally donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t like. Apart from that it was ok as it was fresh. IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99ll prefer to stick to happy endings or smoor.'), ('Rated 1.0', 'RATED\n  really its to pathetic.. cake smashed by the time delivery ........customer care number is not working , they were not receiving call. can any one help this .. I wanted to give rating  but its also not worth . Fu****k it off.....'), ('Rated 5.0', 'RATED\n  We orderd a cake in this cafe for my best friends birthday the delivery ws on time ..cake ws awesome I just loved the cake favour it ws fresh and fine...'), ('Rated 5.0', 'RATED\n  I have ordered cake for here on multiple occasions and to be honest every time the taste was as great as the previous order. They always prepare fresh cakes on order with couple of hours. Best of all is "death by chocolate".\nI really appreciate the service they provided so far. I am really happy with the taste and service.'), ('Rated 5.0', "RATED\n  I ordered the mezo mezo cake and I was totally bowled over - never had tasted a fantastic cake before like this one- it was YUMMY ! I'm now a fan of Cake Town Cafe and am going to order any cakes from you guys only. I checked out other reviews of your cake shop and the reviews do justice to what you guys make."), ('Rated 5.0', 'RATED\n  Yesterday I went to thier shop and I ordered the cake, they just prepare the cake in 10 minutes ( it was real fresh )and real it was awesome cakes never test before like this sm cake,very Testy cake'), ('Rated 5.0', "RATED\n  The Death by Chocolate cake we ordered was awesome!! We kept eating it despite we weren't much hungry :p. Will be ordering again if someone has a birthday :) thanks"), ('Rated 5.0', 'RATED\n  This place is great. A true great find, healthy cakes and wonderful tastes. Truly a confectionery artist. Will definitely recommend ordering from here'), ('Rated 5.0', "RATED\n  I'm a vegan and we wanted a vegan cake for Christmas/New Year celebrations. Mamta made an excellent chocolate cake with non-dairy icing which was simply scrumptious. Thanks a bunch, Mamta!"), ('Rated 5.0', 'RATED\n  Awesome cake they make. I ordered for Chocolate Lite from Caketown directly as Zomato was not accepting orders. They owner got the cake delivered to my office free of cost by 10pm. The cake was fresh yummy and tastes the same even after 48 hours\nHope they continue with the taste and good service and God will reward them with more business.\nJust a suggestion - start making cakes within Rs. 200 and 350 range like reputed bakers in other metro cities'), ('Rated 4.5', 'RATED\n  A must try at this place are bhealthy dry cakes..i.e. range of whole wheat cakes. Among them go for blueberry and walnut. Online order is also a good option. The customer care feedback is extremely looked upon and responded with promptness.\nAwesome place Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', "RATED\n  So it was my husband's birthday and wanted to order healthy cake and muffins. After reading reviews ordered from caketown. Must say I just loved the cake. It was whole wheat cake and was superb. Day was made special from caketown. Thanks"), ('Rated 4.0', 'RATED\n  Very nice place to order a cake especially if you are veg. They specialize in whole wheat cakes with jaggery. I had ordered Coconut Mawa Suji cake and i loved it'), ('Rated 4.0', 'RATED\n  Cake was tasty, but neither wishes written in cake nor provided any cream tube.'), ('Rated 5.0', 'RATED\n  Awesome cake they make. I ordered for Chocolate Lite from Caketown directly as Zomato was not accepting orders. They owner got the cake delivered to my office free of cost by 10pm. The cake was fresh yummy and tastes the same even after 48 hours\nHope they continue with the taste and good service and God will reward them with more business.\nJust a suggestion - start making cakes within Rs. 200 and 350 range like reputed bakers in other metro cities'), ('Rated 4.5', 'RATED\n  A must try at this place are bhealthy dry cakes..i.e. range of whole wheat cakes. Among them go for blueberry and walnut. Online order is also a good option. The customer care feedback is extremely looked upon and responded with promptness.\nAwesome place Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', "RATED\n  So it was my husband's birthday and wanted to order healthy cake and muffins. After reading reviews ordered from caketown. Must say I just loved the cake. It was whole wheat cake and was superb. Day was made special from caketown. Thanks"), ('Rated 4.0', 'RATED\n  Very nice place to order a cake especially if you are veg. They specialize in whole wheat cakes with jaggery. I had ordered Coconut Mawa Suji cake and i loved it'), ('Rated 4.0', 'RATED\n  Cake was tasty, but neither wishes written in cake nor provided any cream tube.'), ('Rated 5.0', 'RATED\n  Awesome cake they make. I ordered for Chocolate Lite from Caketown directly as Zomato was not accepting orders. They owner got the cake delivered to my office free of cost by 10pm. The cake was fresh yummy and tastes the same even after 48 hours\nHope they continue with the taste and good service and God will reward them with more business.\nJust a suggestion - start making cakes within Rs. 200 and 350 range like reputed bakers in other metro cities'), ('Rated 4.5', 'RATED\n  A must try at this place are bhealthy dry cakes..i.e. range of whole wheat cakes. Among them go for blueberry and walnut. Online order is also a good option. The customer care feedback is extremely looked upon and responded with promptness.\nAwesome place Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', "RATED\n  So it was my husband's birthday and wanted to order healthy cake and muffins. After reading reviews ordered from caketown. Must say I just loved the cake. It was whole wheat cake and was superb. Day was made special from caketown. Thanks"), ('Rated 4.0', 'RATED\n  Very nice place to order a cake especially if you are veg. They specialize in whole wheat cakes with jaggery. I had ordered Coconut Mawa Suji cake and i loved it'), ('Rated 4.0', 'RATED\n  Cake was tasty, but neither wishes written in cake nor provided any cream tube.'), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  I ordered the cake purely on some one recommendation. Actually they specialize on providing whole wheat, pure veg cakes. Called Ajay for advice and boy, it was one of the tastiest cakes, we have eaten. Absolutely delicious and yummy to the core. Also they provide sugar free cake made of dates and honey, must try once. You can go for this shop blindly.\n\nP.S.500 gm cake though look small but it was really fulfilling for 6 pax.'), ('Rated 5.0', 'RATED\n  Yummmmmmy cake! Had ordered a chocolate Oreo cake. Awesome! Best part is, I had ordered on a very short notice and yet, it was delivered on time and delicious! Happy with the service!'), ('Rated 5.0', 'RATED\n  Hi, I had to order a cake at a very short notice on occasion of my moms birthday. My ask was addressed and the quality of the cake is extremely appreciated. The family really enjoyed the ingredients, more over the varieties are good. No frills and fancy talks, you get what you order. Keep it up.'), ('Rated 4.0', 'RATED\n  Will surely recommend this place to anyone for a guilt free indulgence.The interior of the cafe is quiet small but the cakes are too yummy to let goÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.'), ('Rated 5.0', "RATED\n  Today is dad's birthday. And beacuse he is diabetic I was looking for a cake which was healthy sugarless and without frosting. I found Cake Town Cafe through just dial and I ordered it. Due to network issue they helped me in online ordering.\nFurther more,due to heavy rain the delivery time for the cake was delayed so the owner himself drove his car to deliver the cake to me which was so sweet of him.\nNeedless to say the bhealthy cake was awesome with wholesome goodness..Me and my family loved the cake. Thank you so much!Way to go Cake Town Cafe!!!\nI am your regular customer now..."), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 5.0', 'RATED\n  1. nice hospitality and delicious stuff\n2. on time delivery\n3. they can understand when we need the cakes at the 11th hour.\n4. polite staff.'), ('Rated 5.0', 'RATED\n  Amazing service. Cakes are mouth watering as always. Would recommend cake town cafe for ur delicious cakes. Place ur order now if ur looking for the best cakes. Thanks mamatha for the amazing cakes :)'), ('Rated 5.0', 'RATED\n  Love the cakes from this place .I have been ordering since Dec 2017 and the whole family loves the cakes.The fact that these cakes are whole wheat what attracts us the most. I have ordered Birthday cake also multiple times(without cream) and it was loved by all.The coffee flavoured cake was really yummy.would love to see more innovations like millets and other grains.Thanks and keep up the good quality.'), ('Rated 5.0', 'RATED\n  Excellent cakes. I have ordered online from Cake town multiple times, many varieties, from dry cakes to birthday cakes and each time I have been delighted by the quality and taste of the cakes. Wonderful stuff!! Keep up the good work!'), ('Rated 3.5', 'RATED\n  One of the few places ordering whole wheat desserts. Although they have a seating space, but its not somewhere you can hang out - you can just sit, eat and go.\nComing to the desserts - they have a good variety of whole wheat desserts. I picked a chocolate pastry and a jaggery walnut cake. The pastry does not look really pretty but its damn good to eat - really chocolatey. And on the plus side all desserts are whole wheat.'), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 3.5', 'RATED\n  Nice cakes and pastries.. but a bit heavy on d wallet for such a small little outlet.. but worth trying d sugar free cakes.. d staff needs more training though.'), ('Rated 5.0', 'RATED\n  I ordered from kochi as a baby shower surprise for my colleague. It was a blind gut choice and Mamta was super sweet to coordinate on my behalf. Everybody were crazy about the cake and one of them reordered as well. Thanks much for the help and keep up the amazing work!'), ('Rated 5.0', 'RATED\n  Totally based on healthy concept.amazing part is that you can have their products with guilt free.loaded with whole wheat, jaggery.every time I walk in see new products added on.aroma of freshly baked cake s always attract s me.'), ('Rated 5.0', 'RATED\n  The milk chocolates are amazing. They have a unique flavour that lingers in the mouth long after the chocolate is gone. The creaminess of milk goes very well with the silkiness of chocolate and the lightness of the combination keeps you craving for more. Great taste!'), ('Rated 4.5', "RATED\n  Amazing cakes ... and the best part is that u can eat them guilt free...: cakes made of wheat, jaggery and no butter... perfect for any occasion. Now u know where to go whenever u r craving for sweets and don't want to cheat on ur exercise regime..."), ('Rated 4.5', 'RATED\n  Cozy new cafe in Koramangala... yummy healthy eggless pastries and chocolate boxes. Loved the chocolate ball cake and ordered 5 of it to go as well. Strawberry mousse was creamy and yummy and chocolate box was for my friend which she liked a lot.\nKeep up the good stuff. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82º'), ('Rated 5.0', 'RATED\n  This is an awesome cafe recently opened with whole lot of variety of yummy healthy cakes with some interesting snacks. I have been trying these cakes since couple of years by ordering on Big Basket or wherever they had put their stalls. The best part is cakes are wheat based, very healthy without a compromise on the taste. My favourite one is Coffee Walnut cake. Its a must have!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', 'RATED\n  A full 5-star rating for this place. Love the cakes and chocolates. The cakes are so soft and scrumptious. And the best part is they are whole wheat. Chocolates such as almond rocks are totally worth trying. My kids love the cakes so much. Especially the dates walnut. They need it almost every day!'), ('Rated 4.5', 'RATED\n  Any occasion or anytime of the day, lip smacking tastes of their chocolates and cakes are not a miss..... best to gift or surprise anyone with their guiltfree cakes / vegan tasty and yummy creamy cakes or to enjoy the diet coco based chocolates.....try it taste it enjoy it then say I am just loving it .......:)'), ('Rated 5.0', 'RATED\n  Fantastic, healthy bakes. And very flavourful sandwiches. Nice location. Loved the place. Walnut muffins are a must try. Eat without guilt:)'), ('Rated 4.5', 'RATED\n  Cozy new cafe in Koramangala... yummy healthy eggless pastries and chocolate boxes. Loved the chocolate ball cake and ordered 5 of it to go as well. Strawberry mousse was creamy and yummy and chocolate box was for my friend which she liked a lot.\nKeep up the good stuff. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82º'), ('Rated 5.0', 'RATED\n  This is an awesome cafe recently opened with whole lot of variety of yummy healthy cakes with some interesting snacks. I have been trying these cakes since couple of years by ordering on Big Basket or wherever they had put their stalls. The best part is cakes are wheat based, very healthy without a compromise on the taste. My favourite one is Coffee Walnut cake. Its a must have!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', 'RATED\n  A full 5-star rating for this place. Love the cakes and chocolates. The cakes are so soft and scrumptious. And the best part is they are whole wheat. Chocolates such as almond rocks are totally worth trying. My kids love the cakes so much. Especially the dates walnut. They need it almost every day!'), ('Rated 4.5', 'RATED\n  Any occasion or anytime of the day, lip smacking tastes of their chocolates and cakes are not a miss..... best to gift or surprise anyone with their guiltfree cakes / vegan tasty and yummy creamy cakes or to enjoy the diet coco based chocolates.....try it taste it enjoy it then say I am just loving it .......:)'), ('Rated 5.0', 'RATED\n  Fantastic, healthy bakes. And very flavourful sandwiches. Nice location. Loved the place. Walnut muffins are a must try. Eat without guilt:)'), ('Rated 4.5', 'RATED\n  Cozy new cafe in Koramangala... yummy healthy eggless pastries and chocolate boxes. Loved the chocolate ball cake and ordered 5 of it to go as well. Strawberry mousse was creamy and yummy and chocolate box was for my friend which she liked a lot.\nKeep up the good stuff. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82º'), ('Rated 5.0', 'RATED\n  This is an awesome cafe recently opened with whole lot of variety of yummy healthy cakes with some interesting snacks. I have been trying these cakes since couple of years by ordering on Big Basket or wherever they had put their stalls. The best part is cakes are wheat based, very healthy without a compromise on the taste. My favourite one is Coffee Walnut cake. Its a must have!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', 'RATED\n  A full 5-star rating for this place. Love the cakes and chocolates. The cakes are so soft and scrumptious. And the best part is they are whole wheat. Chocolates such as almond rocks are totally worth trying. My kids love the cakes so much. Especially the dates walnut. They need it almost every day!'), ('Rated 4.5', 'RATED\n  Any occasion or anytime of the day, lip smacking tastes of their chocolates and cakes are not a miss..... best to gift or surprise anyone with their guiltfree cakes / vegan tasty and yummy creamy cakes or to enjoy the diet coco based chocolates.....try it taste it enjoy it then say I am just loving it .......:)'), ('Rated 5.0', 'RATED\n  Fantastic, healthy bakes. And very flavourful sandwiches. Nice location. Loved the place. Walnut muffins are a must try. Eat without guilt:)'), ('Rated 4.5', 'RATED\n  Cozy new cafe in Koramangala... yummy healthy eggless pastries and chocolate boxes. Loved the chocolate ball cake and ordered 5 of it to go as well. Strawberry mousse was creamy and yummy and chocolate box was for my friend which she liked a lot.\nKeep up the good stuff. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82º'), ('Rated 5.0', 'RATED\n  This is an awesome cafe recently opened with whole lot of variety of yummy healthy cakes with some interesting snacks. I have been trying these cakes since couple of years by ordering on Big Basket or wherever they had put their stalls. The best part is cakes are wheat based, very healthy without a compromise on the taste. My favourite one is Coffee Walnut cake. Its a must have!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', 'RATED\n  A full 5-star rating for this place. Love the cakes and chocolates. The cakes are so soft and scrumptious. And the best part is they are whole wheat. Chocolates such as almond rocks are totally worth trying. My kids love the cakes so much. Especially the dates walnut. They need it almost every day!'), ('Rated 4.5', 'RATED\n  Any occasion or anytime of the day, lip smacking tastes of their chocolates and cakes are not a miss..... best to gift or surprise anyone with their guiltfree cakes / vegan tasty and yummy creamy cakes or to enjoy the diet coco based chocolates.....try it taste it enjoy it then say I am just loving it .......:)'), ('Rated 5.0', 'RATED\n  Fantastic, healthy bakes. And very flavourful sandwiches. Nice location. Loved the place. Walnut muffins are a must try. Eat without guilt:)'), ('Rated 4.5', 'RATED\n  Cozy new cafe in Koramangala... yummy healthy eggless pastries and chocolate boxes. Loved the chocolate ball cake and ordered 5 of it to go as well. Strawberry mousse was creamy and yummy and chocolate box was for my friend which she liked a lot.\nKeep up the good stuff. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82º'), ('Rated 5.0', 'RATED\n  This is an awesome cafe recently opened with whole lot of variety of yummy healthy cakes with some interesting snacks. I have been trying these cakes since couple of years by ordering on Big Basket or wherever they had put their stalls. The best part is cakes are wheat based, very healthy without a compromise on the taste. My favourite one is Coffee Walnut cake. Its a must have!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', 'RATED\n  A full 5-star rating for this place. Love the cakes and chocolates. The cakes are so soft and scrumptious. And the best part is they are whole wheat. Chocolates such as almond rocks are totally worth trying. My kids love the cakes so much. Especially the dates walnut. They need it almost every day!'), ('Rated 4.5', 'RATED\n  Any occasion or anytime of the day, lip smacking tastes of their chocolates and cakes are not a miss..... best to gift or surprise anyone with their guiltfree cakes / vegan tasty and yummy creamy cakes or to enjoy the diet coco based chocolates.....try it taste it enjoy it then say I am just loving it .......:)'), ('Rated 5.0', 'RATED\n  Fantastic, healthy bakes. And very flavourful sandwiches. Nice location. Loved the place. Walnut muffins are a must try. Eat without guilt:)'), ('Rated 4.5', 'RATED\n  Cozy new cafe in Koramangala... yummy healthy eggless pastries and chocolate boxes. Loved the chocolate ball cake and ordered 5 of it to go as well. Strawberry mousse was creamy and yummy and chocolate box was for my friend which she liked a lot.\nKeep up the good stuff. Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82º'), ('Rated 5.0', 'RATED\n  This is an awesome cafe recently opened with whole lot of variety of yummy healthy cakes with some interesting snacks. I have been trying these cakes since couple of years by ordering on Big Basket or wherever they had put their stalls. The best part is cakes are wheat based, very healthy without a compromise on the taste. My favourite one is Coffee Walnut cake. Its a must have!Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80'), ('Rated 5.0', 'RATED\n  A full 5-star rating for this place. Love the cakes and chocolates. The cakes are so soft and scrumptious. And the best part is they are whole wheat. Chocolates such as almond rocks are totally worth trying. My kids love the cakes so much. Especially the dates walnut. They need it almost every day!'), ('Rated 4.5', 'RATED\n  Any occasion or anytime of the day, lip smacking tastes of their chocolates and cakes are not a miss..... best to gift or surprise anyone with their guiltfree cakes / vegan tasty and yummy creamy cakes or to enjoy the diet coco based chocolates.....try it taste it enjoy it then say I am just loving it .......:)'), ('Rated 5.0', 'RATED\n  Fantastic, healthy bakes. And very flavourful sandwiches. Nice location. Loved the place. Walnut muffins are a must try. Eat without guilt:)'), ('Rated 4.5', 'RATED\n  Awesome cakes.... Really loved this cafe....went with my kids.... They like the cakes there... V liked the vanilla tutti fruti cake the most.'), ('Rated 5.0', "RATED\n  I went there for the first time I had some amazing cakes that were healthy and tasty ! Place looks cute and nice. Ordered their whole wheat birthday cake and my children loved it. I went back and bought their vanilla tutti frutti cake for my parents as my parents can't have the maida one but this cake was so tasty it got finished on the first day. Going to try their other varieties too"), ('Rated 5.0', 'RATED\n  Its a lovely place for cake lovers.. Healthy and tasty..They have some very good options for cakes, sandwiches etc..Nice and bright ambience :)'), ('Rated 5.0', 'RATED\n  Just love their cakes and its so good for children too. Someone with a sweet tooth can enjoy their delicacies and not feel guilty..its healthy too :).. Must visit place..'), ('Rated 5.0', 'RATED\n  I recently visited this place. And my daughter totally loved it. If u r looking for fresh and healthy cakes...this is the place to go. Superb yummmmm!'), ('Rated 4.5', 'RATED\n  Awesome cakes.... Really loved this cafe....went with my kids.... They like the cakes there... V liked the vanilla tutti fruti cake the most.'), ('Rated 5.0', "RATED\n  I went there for the first time I had some amazing cakes that were healthy and tasty ! Place looks cute and nice. Ordered their whole wheat birthday cake and my children loved it. I went back and bought their vanilla tutti frutti cake for my parents as my parents can't have the maida one but this cake was so tasty it got finished on the first day. Going to try their other varieties too"), ('Rated 5.0', 'RATED\n  Its a lovely place for cake lovers.. Healthy and tasty..They have some very good options for cakes, sandwiches etc..Nice and bright ambience :)'), ('Rated 5.0', 'RATED\n  Just love their cakes and its so good for children too. Someone with a sweet tooth can enjoy their delicacies and not feel guilty..its healthy too :).. Must visit place..'), ('Rated 5.0', 'RATED\n  I recently visited this place. And my daughter totally loved it. If u r looking for fresh and healthy cakes...this is the place to go. Superb yummmmm!'), ('Rated 4.5', 'RATED\n  Awesome cakes.... Really loved this cafe....went with my kids.... They like the cakes there... V liked the vanilla tutti fruti cake the most.'), ('Rated 5.0', "RATED\n  I went there for the first time I had some amazing cakes that were healthy and tasty ! Place looks cute and nice. Ordered their whole wheat birthday cake and my children loved it. I went back and bought their vanilla tutti frutti cake for my parents as my parents can't have the maida one but this cake was so tasty it got finished on the first day. Going to try their other varieties too"), ('Rated 5.0', 'RATED\n  Its a lovely place for cake lovers.. Healthy and tasty..They have some very good options for cakes, sandwiches etc..Nice and bright ambience :)'), ('Rated 5.0', 'RATED\n  Just love their cakes and its so good for children too. Someone with a sweet tooth can enjoy their delicacies and not feel guilty..its healthy too :).. Must visit place..'), ('Rated 5.0', 'RATED\n  I recently visited this place. And my daughter totally loved it. If u r looking for fresh and healthy cakes...this is the place to go. Superb yummmmm!'), ('Rated 4.5', 'RATED\n  Awesome cakes.... Really loved this cafe....went with my kids.... They like the cakes there... V liked the vanilla tutti fruti cake the most.'), ('Rated 5.0', "RATED\n  I went there for the first time I had some amazing cakes that were healthy and tasty ! Place looks cute and nice. Ordered their whole wheat birthday cake and my children loved it. I went back and bought their vanilla tutti frutti cake for my parents as my parents can't have the maida one but this cake was so tasty it got finished on the first day. Going to try their other varieties too"), ('Rated 5.0', 'RATED\n  Its a lovely place for cake lovers.. Healthy and tasty..They have some very good options for cakes, sandwiches etc..Nice and bright ambience :)'), ('Rated 5.0', 'RATED\n  Just love their cakes and its so good for children too. Someone with a sweet tooth can enjoy their delicacies and not feel guilty..its healthy too :).. Must visit place..'), ('Rated 5.0', 'RATED\n  I recently visited this place. And my daughter totally loved it. If u r looking for fresh and healthy cakes...this is the place to go. Superb yummmmm!'), ('Rated 4.5', 'RATED\n  Awesome cakes.... Really loved this cafe....went with my kids.... They like the cakes there... V liked the vanilla tutti fruti cake the most.'), ('Rated 5.0', "RATED\n  I went there for the first time I had some amazing cakes that were healthy and tasty ! Place looks cute and nice. Ordered their whole wheat birthday cake and my children loved it. I went back and bought their vanilla tutti frutti cake for my parents as my parents can't have the maida one but this cake was so tasty it got finished on the first day. Going to try their other varieties too"), ('Rated 5.0', 'RATED\n  Its a lovely place for cake lovers.. Healthy and tasty..They have some very good options for cakes, sandwiches etc..Nice and bright ambience :)'), ('Rated 5.0', 'RATED\n  Just love their cakes and its so good for children too. Someone with a sweet tooth can enjoy their delicacies and not feel guilty..its healthy too :).. Must visit place..'), ('Rated 5.0', 'RATED\n  I recently visited this place. And my daughter totally loved it. If u r looking for fresh and healthy cakes...this is the place to go. Superb yummmmm!'), ('Rated 5.0', 'RATED\n  Bought a few cakes today. I was amazed to see that they are made of wheat & for sugar they have used organic gur.\nThe cakes were excellent minus the gilt factor of processed sugar.\n\nWould definately recommend all to try. Must visit place in Kormangla. Shikha Nag')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
I ordered this cake for my sonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s 1st birthday and they made it exactly the same. Taste is just WOW...I would like you all to taste once then you will never go anywhere for cakes.'), ('Rated 3.0', "RATED\n  Its the only bakery located in my office food court. I think its bit on a pricey side but these guys don't compromise with the quality. They make their own sandwiches, soup and salad which I generally opt for lunch. The pastries and Bakery item are fresh and yummy. Believe me, his place will never disappoint you."), ('Rated 4.0', 'RATED\n  I love their burgers and cold coffee. Cakes are good too. Total value for money. Their garden veg sandwich is amazing. I used to almost eat daily from this outlet when I was in bangalore.'), ('Rated 3.0', 'RATED\n  The oven fresh I am talking about is inside our office premises in RMZ Ecospace. They have muffins, brownies, cakes etc in their display. Though they pizza etc in thier menu, but they dont keep it. Recently I had chicken biriyani and cheelttinad sandwich from their store. Liked both if them .The biriyani was nicely packed and and they warmed it up before serving. It was accompanied by raita. i liked the sandwich more to the biriyani, though it was lunch time.\n\navrilsfoodjournee.com'), ('Rated 4.0', 'RATED\n  Ordered their Choco almond cake for rs. 677 . Freshly baked, exact sweetness and good quality chocolate. Have cash on delivery as well, delivered the day asked for. Good cake and nice taste. Good for birthday cake and nice value for money.'), ('Rated 3.0', 'RATED\n  In my office recently launched Oven fresh...my all time favourite was "fruit rolls" they are bit reasonable price for RS 18...compared to outside price..if you see oven fresh outlet you can try fruit roll once'), ('Rated 3.0', 'RATED\n  Oven fresh looks to be a fancier option when compared to just bake.\nI personally never liked oven fresh because of unnecessarily over pricing the food items.\nHave tried the burger and sandwiches here and they are very mediocre.\nOnly thing I liked in here were the donuts. It is not close to what you get at MOD or Krispy Kreme, but still a good deal for 20 odd bucks!\n\ngrubitizer.com'), ('Rated 2.0', "RATED\n  It used to be good previously but recently I had not so good experience. The capsicum puff was like rubber couldn't eat atall. And the chocolate pastry just tasted ok."), ('Rated 1.0', 'RATED\n  My dad had oven fresh products in his office canteen .He brought home some chocolate donuts .Dam I must say I have never had anything so disgusting .Even the trash would reject it. A rotting Caracas would taste better I would give it -infinity if I could .This is like what they say in a movie there is the the best then a few good ones then pile of shit another 100 miles of nothing and then oven fresh'), ('Rated 3.5', 'RATED\n  Have ordered cakes from here on multiple occasions. Quite nice and delicious I would say as far as bakery items are considered. Did the mistake of having biryani here once, I personally did not like it at all, although people might have different opinion based on the spice level they prefer.'), ('Rated 1.0', 'RATED\n  Except for their cakes, the quality has become really pathetic. I tried the Biriyani combo that used to taste good before. Now really bad. Hence the resto bakery must be considered only a bakery. Not worth.'), ('Rated 3.0', 'RATED\n  Decent coffee and cakes. The biryani here is okayish. The wall art here is quite impressive. Hence the ambience here is pleasant. Good stop for a quick bite.'), ('Rated 3.5', "RATED\n  This place is only and only good for cakes. \nFew of my favorite must try cake recommendations are : \n--Chocolate almond: Pretty dense chocolaty cake\n-- Coffee cake: Love the new flavoring\n--Butterscotch cake: Super soft and moist\n\nDo not try : \n--Sandwiches\n--Pizzas\n--Ice tea\n--Lemonade\n\nThe above are over priced , stale and doesn't taste good for the amount we have to pay for it. For me Freshness and Quality is the main criteria hence my rating for this place is 3.5/5. ( Mainly because the cakes are good and moist)\n\nfoodzillaweb.wordpress.com"), ('Rated 3.5', 'RATED\n  One and the one place to have Cakes and Bakes inside SJR iPark. The cakes are great and so are the muffins and pastry items .\n\nThe snacks tastes great and the ambiance is decent. They also serve oven baked biryani for lunch and dinner. The biryani taste and quality has drastically came down over the period. The quality is bad and sometimes even worse. The quantity is decent and can easily satisfy the hungry stomach.\n\nThe chocolate mousse is brilliant and the baked cookies are great with goes well with the coffee .'), ('Rated 4.0', 'RATED\n  I have tried their outlets in manyata tech park and found it good for snacks and v. Chicken tikka sandwich is recommended. Tastes are good for all varieties of sandwich and cakes, give you a feel of freshly baked. Good filter coffee Is also available.'), ('Rated 4.0', 'RATED\n  It is mostly a bakery kind of place but they do sell small eats.\nWe once tried their biryani and chicken wings and it tasted amazing.\nThe chocolate mousse is their most delicious dessert. They sell a pack of cookies for Rs.10 and it is totally worth it.\nThey also have a wide variety of cakes and pastries. Will try and taste them over time.\n\nthechubgrubsandtravels.blogspot.com')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2
Cozy home style cafe. Amazing garlic bread, ordered twice as the amount was not enough to satisfy the taste budsÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8b.\n\nAlso they serve some great varieties of coffee (both hot and cold) and hot chocolate.\n\n*Cafe Pasha: This is really really good, give it a try if you are a mochaccino fan\n*Cafe Anaconda: If you are a mint chocolate chip person, give this a try. One quick tip, mix it well before having to get the perfect flavour.\n*Hot chocolate with Hazelnut: It was too sweet,so requested them to add a bit more cocoa per my liking. However,very creamy and comforting for cold evenings in Bangalore.'), ('Rated 3.0', 'RATED\n  Ambience 4/5\nFood 3/5\nService 3.5/5\nAmbience was pretty nice...ordered one chicken sandwich which turned out to be a little dry and one veg spinach cheese mushroom sandwich which lacked cheese and wasnt good at all..the kit kat shake was nice.dissapointed by the sandwiches though.'), ('Rated 4.0', "RATED\n  This is a very beautiful cafe' set up in Kormangala, it's basically a cottage turned into one. Loved the ambience and vibe of it, I had ordered fettuccine and lemonade and give 5/5 for them both. Cutting one star for their slow service, I had ordered a choco lava cake as well and had to remind then 2-3 times to get it. Eventually it arrived, but when I had asked for cheque. Maybe it was just a one day experience. But anyone reading this review I totally recommend this place, it's food heaven. Cheers!"), ('Rated 2.0', 'RATED\n  Wanna try the worst maggie in bangalore? This is the place for you . The decor is fine. It is literally a house. With absolutely no appealing ambience.'), ('Rated 4.0', 'RATED\n  We went for early morning breakfast today , food was amazing. They have a concept of cafe made inside a home where they offer various board games. Good place to hang out with a group , and grab on some munchies.'), ('Rated 3.0', "RATED\n  Away from the crowded streets of Kormangala, this place gives a cozy interior. It has so many board games and cards that you can pick from the shelf and play.\n\nFor main course, we ordered Alfredo pasta with broccoli and chicken mushroom sandwich. The pasta were bland and had a lot of oil. The sandwich wasn't that great either.\n\nWe ordered Cafe Pasha and Hot chocolate. Both of them were a bit too sweet but they tasted alright. The satisfaction was more from the warm comforting feeling rather than the taste of it.\n\nI would advise you go here to chill and play Uno instead of going with high hopes of food."), ('Rated 5.0', "RATED\n  If you're looking for lovely ambience and even better food, this is the place to be at!No one makes feta cheese salad with watermelon like these guys do!Love almost everything on their menu! The portions are big, so order wisely!"), ('Rated 5.0', "RATED\n  This place is as lovely as home. A cornered place where you can have amazing and someway different cuisine. I loved the way it has been designed and decorated. Must be difficult to spot but it's a really nice place. A very quiet and lovely place to be at"), ('Rated 4.0', 'RATED\n  Pretty cosy place located on a busy road. We had ordered garlic bread, watermelon salad, nasi goreng and waffles. Garlic bread and watermelon salad were amazing! Waffles were good too, a little crispy though.'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a home with great furniture to just sit and work or spend lots of time with friends. Food is decent but place is much better to chillax'), ('Rated 4.0', 'RATED\n  I would ideally like to give it a 4.5 / 5.\n\nMr. Beans - Home Cafe is one of the best cafes around Koramangala to have brunch. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with posters and funny quotes. It has a good collection of board and card games as well.\n\nThe staffs are courteous. We ordered several dishes but my favourite ones include bruschetta, toasted baked beans, waffles and cafe frappe. The tomato on bruschetta was very fresh and juicy. The balsamic vinegar and honey along with the garlic and basil added a different flavour to it. It was a very unique and best bruschetta I have ever tried in my life!Would highly recommend this place for a weekend brunch!'), ('Rated 3.0', "RATED\n  Visited this place after hearing a lot of good reviews . The ambience was nice and homely kind , liked it . It's very simple palace and not very crowded , you can spend sometime playing games or just talking over a coffee. The food is good , nothing extraordinary. The staff after very hospitable and sweet . Can surely give this place a try ."), ('Rated 5.0', "RATED\n  No words for me to describe this place... Such a peaceful place ambient environment in all the aspects I'm totally in love with this place courteous staff"), ('Rated 2.0', "RATED\n  Below average. The food quality wasn't great. The restaurant staff didn't have any knowledge about the menu and what dish contains what. The menu was a bit misleading too in terms of that. The food ingredients used were very unhealthy and the food was overcooked so we returned at least one dish. Overall a very below average experience. The outside also seemed too dusty. The taste of the food wasn't good either."), ('Rated 4.0', 'RATED\n  If you got to choose between scrumptious pork sausages and crumbled chicken topped with cheese what would you prefer?\nWell I would have both of them Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d\n\nMr. Beans cafe is something I have had heard alot about and always wanted to visit this cute little setup. To all my wonders this place is not confined to a few tables in a row. Its a nice place with a basic yet composite interior. The place has outdoor seating as well.\nWith the large variety of EntrÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨es(starters) what they call it this place has super amazing combos.\nIf you are a Non-Vegetarian do try " Our meat feast Combos" section.\nThe mushroom and leek soup is a must try.. The juices and other beverages comes up with a good taste and quantity.\nSince I love Maosn Jars Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95 , water melon juice be my favorite'), ('Rated 4.0', 'RATED\n  One of the best cafes around Kormangala. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with quirky lines and some good pictures too. It has quite a collection of board and card games, so, you are in for good time!\n\nThe food was good too. Eggs with a twist with Picked Omelette is great! Pizza and pasta are decent too.\n\nAlso, they have free Comedy nights on every Wednesday! Thank me later! :)'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice little place to chat and enjoy the evening over light music . We ordered Mushroom Ravoli , mushroom on toast and Thai soup . Everything was tasty'), ('Rated 3.0', "RATED\n  It's apparently a home-turned-cafe with the seating sporadically spaced. We ordered a pizza and a pork sausage dish. Neither of the dishes was that good, to be honest. The place was nicely decorated and had a nice looking dessert bar. However, I didn't try that so can't say. Anyway, it's a one time visit kind of place."), ('Rated 3.0', "RATED\n  Place was good but somehow I don't like it much. It was mostly empty. I ordered pizza and it was plain with no spice on it. So I will rate it 3 star."), ('Rated 4.0', 'RATED\n  The name justifies the food and the ambience..\nIts a cosy place with different rooms to sit..\nWe ordered a number of food items which tasted quite good... The packed drinks can be ignored as it doesnt justify the taste..'), ('Rated 4.0', 'RATED\n  One of the best cafes around Kormangala. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with quirky lines and some good pictures too. It has quite a collection of board and card games, so, you are in for good time!\n\nThe food was good too. Eggs with a twist with Picked Omelette is great! Pizza and pasta are decent too.\n\nAlso, they have free Comedy nights on every Wednesday! Thank me later! :)'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice little place to chat and enjoy the evening over light music . We ordered Mushroom Ravoli , mushroom on toast and Thai soup . Everything was tasty'), ('Rated 3.0', "RATED\n  It's apparently a home-turned-cafe with the seating sporadically spaced. We ordered a pizza and a pork sausage dish. Neither of the dishes was that good, to be honest. The place was nicely decorated and had a nice looking dessert bar. However, I didn't try that so can't say. Anyway, it's a one time visit kind of place."), ('Rated 3.0', "RATED\n  Place was good but somehow I don't like it much. It was mostly empty. I ordered pizza and it was plain with no spice on it. So I will rate it 3 star."), ('Rated 4.0', 'RATED\n  The name justifies the food and the ambience..\nIts a cosy place with different rooms to sit..\nWe ordered a number of food items which tasted quite good... The packed drinks can be ignored as it doesnt justify the taste..'), ('Rated 4.0', 'RATED\n  One of the best cafes around Kormangala. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with quirky lines and some good pictures too. It has quite a collection of board and card games, so, you are in for good time!\n\nThe food was good too. Eggs with a twist with Picked Omelette is great! Pizza and pasta are decent too.\n\nAlso, they have free Comedy nights on every Wednesday! Thank me later! :)'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice little place to chat and enjoy the evening over light music . We ordered Mushroom Ravoli , mushroom on toast and Thai soup . Everything was tasty'), ('Rated 3.0', "RATED\n  It's apparently a home-turned-cafe with the seating sporadically spaced. We ordered a pizza and a pork sausage dish. Neither of the dishes was that good, to be honest. The place was nicely decorated and had a nice looking dessert bar. However, I didn't try that so can't say. Anyway, it's a one time visit kind of place."), ('Rated 3.0', "RATED\n  Place was good but somehow I don't like it much. It was mostly empty. I ordered pizza and it was plain with no spice on it. So I will rate it 3 star."), ('Rated 4.0', 'RATED\n  The name justifies the food and the ambience..\nIts a cosy place with different rooms to sit..\nWe ordered a number of food items which tasted quite good... The packed drinks can be ignored as it doesnt justify the taste..'), ('Rated 4.0', 'RATED\n  One of the best cafes around Kormangala. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with quirky lines and some good pictures too. It has quite a collection of board and card games, so, you are in for good time!\n\nThe food was good too. Eggs with a twist with Picked Omelette is great! Pizza and pasta are decent too.\n\nAlso, they have free Comedy nights on every Wednesday! Thank me later! :)'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice little place to chat and enjoy the evening over light music . We ordered Mushroom Ravoli , mushroom on toast and Thai soup . Everything was tasty'), ('Rated 3.0', "RATED\n  It's apparently a home-turned-cafe with the seating sporadically spaced. We ordered a pizza and a pork sausage dish. Neither of the dishes was that good, to be honest. The place was nicely decorated and had a nice looking dessert bar. However, I didn't try that so can't say. Anyway, it's a one time visit kind of place."), ('Rated 3.0', "RATED\n  Place was good but somehow I don't like it much. It was mostly empty. I ordered pizza and it was plain with no spice on it. So I will rate it 3 star."), ('Rated 4.0', 'RATED\n  The name justifies the food and the ambience..\nIts a cosy place with different rooms to sit..\nWe ordered a number of food items which tasted quite good... The packed drinks can be ignored as it doesnt justify the taste..'), ('Rated 4.0', 'RATED\n  One of the best cafes around Kormangala. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with quirky lines and some good pictures too. It has quite a collection of board and card games, so, you are in for good time!\n\nThe food was good too. Eggs with a twist with Picked Omelette is great! Pizza and pasta are decent too.\n\nAlso, they have free Comedy nights on every Wednesday! Thank me later! :)'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice little place to chat and enjoy the evening over light music . We ordered Mushroom Ravoli , mushroom on toast and Thai soup . Everything was tasty'), ('Rated 3.0', "RATED\n  It's apparently a home-turned-cafe with the seating sporadically spaced. We ordered a pizza and a pork sausage dish. Neither of the dishes was that good, to be honest. The place was nicely decorated and had a nice looking dessert bar. However, I didn't try that so can't say. Anyway, it's a one time visit kind of place."), ('Rated 3.0', "RATED\n  Place was good but somehow I don't like it much. It was mostly empty. I ordered pizza and it was plain with no spice on it. So I will rate it 3 star."), ('Rated 4.0', 'RATED\n  The name justifies the food and the ambience..\nIts a cosy place with different rooms to sit..\nWe ordered a number of food items which tasted quite good... The packed drinks can be ignored as it doesnt justify the taste..'), ('Rated 4.0', 'RATED\n  One of the best cafes around Kormangala. This place is spacious enough to accommodate plenty of guests. The walls are well decorated with quirky lines and some good pictures too. It has quite a collection of board and card games, so, you are in for good time!\n\nThe food was good too. Eggs with a twist with Picked Omelette is great! Pizza and pasta are decent too.\n\nAlso, they have free Comedy nights on every Wednesday! Thank me later! :)'), ('Rated 4.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a nice little place to chat and enjoy the evening over light music . We ordered Mushroom Ravoli , mushroom on toast and Thai soup . Everything was tasty'), ('Rated 3.0', "RATED\n  It's apparently a home-turned-cafe with the seating sporadically spaced. We ordered a pizza and a pork sausage dish. Neither of the dishes was that good, to be honest. The place was nicely decorated and had a nice looking dessert bar. However, I didn't try that so can't say. Anyway, it's a one time visit kind of place."), ('Rated 3.0', "RATED\n  Place was good but somehow I don't like it much. It was mostly empty. I ordered pizza and it was plain with no spice on it. So I will rate it 3 star."), ('Rated 4.0', 'RATED\n  The name justifies the food and the ambience..\nIts a cosy place with different rooms to sit..\nWe ordered a number of food items which tasted quite good... The packed drinks can be ignored as it doesnt justify the taste..'), ('Rated 4.0', 'RATED\n  Mr. Beans is a lovely cafe. Lovely food, courteous service and pretty interiors. Particularly liked the coffee and tea that we had. The food is not extraordinary, but it tasted fresh. The whole experience is a charmer, and is the perfect hideout with your loved ones as also for yourself. Just curl up with a book (they have quite a few in the restaurant itself) and while away a quiet afternoon or two. Give it a try! IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99m pretty sure you would have a great time.'), ('Rated 3.0', 'RATED\n  Charming place in the heart of Koramangala, perfect for a quiet breakfast. The food tasted good, but the descriptions were a little misleading. I asked for a BLT sandwich and got a BLT sub instead. The waiters were friendly, and willing to customise chai. My main complaints were that the seating in the garden area and the attention of the waiters were not up to the mark.'), ('Rated 4.0', 'RATED\n  I walked into Mr. Beans for a Saturday brunch. This place serves Italian and continental food.\n\nYou could enjoy your meal over some board game.\nThis place is good to visit with family or friends. And if you want to have some time alone with a book to give you company, they have couple of books you can grab.\n\nThe food and service was good. Value for money. Decent ambience, seems to be an old house converted to a cafe. You can get parking.\n\nI would definitely recommend this place. Have great and amazing food!'), ('Rated 4.0', "RATED\n  Randomly decided to check out this place and fell completely in love with the decor. It's the perfect place for a sober chill sesh with friends and family. The food is not worth the price you pay for it but their shortbread cookies are AMAZING! A pretty relaxing outing for a weekday.\nTheir beverages are delicious too!"), ('Rated 4.0', 'RATED\n  Was looking out for a good Ravioli and voila got it here - exactly like the way I would love to have it any day!!!!\nPlace has a beautiful ambience outside and inside, food, coffee and Tea was delicious - served rightly. Good to visit place - outside is a bit noisy due to metro construction going on but inside has good seating and space.'), ('Rated 4.0', 'RATED\n  Mr. Beans is a lovely cafe. Lovely food, courteous service and pretty interiors. Particularly liked the coffee and tea that we had. The food is not extraordinary, but it tasted fresh. The whole experience is a charmer, and is the perfect hideout with your loved ones as also for yourself. Just curl up with a book (they have quite a few in the restaurant itself) and while away a quiet afternoon or two. Give it a try! IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99m pretty sure you would have a great time.'), ('Rated 3.0', 'RATED\n  Charming place in the heart of Koramangala, perfect for a quiet breakfast. The food tasted good, but the descriptions were a little misleading. I asked for a BLT sandwich and got a BLT sub instead. The waiters were friendly, and willing to customise chai. My main complaints were that the seating in the garden area and the attention of the waiters were not up to the mark.'), ('Rated 4.0', 'RATED\n  I walked into Mr. Beans for a Saturday brunch. This place serves Italian and continental food.\n\nYou could enjoy your meal over some board game.\nThis place is good to visit with family or friends. And if you want to have some time alone with a book to give you company, they have couple of books you can grab.\n\nThe food and service was good. Value for money. Decent ambience, seems to be an old house converted to a cafe. You can get parking.\n\nI would definitely recommend this place. Have great and amazing food!'), ('Rated 4.0', "RATED\n  Randomly decided to check out this place and fell completely in love with the decor. It's the perfect place for a sober chill sesh with friends and family. The food is not worth the price you pay for it but their shortbread cookies are AMAZING! A pretty relaxing outing for a weekday.\nTheir beverages are delicious too!"), ('Rated 4.0', 'RATED\n  Was looking out for a good Ravioli and voila got it here - exactly like the way I would love to have it any day!!!!\nPlace has a beautiful ambience outside and inside, food, coffee and Tea was delicious - served rightly. Good to visit place - outside is a bit noisy due to metro construction going on but inside has good seating and space.'), ('Rated 4.0', 'RATED\n  Mr. Beans is a lovely cafe. Lovely food, courteous service and pretty interiors. Particularly liked the coffee and tea that we had. The food is not extraordinary, but it tasted fresh. The whole experience is a charmer, and is the perfect hideout with your loved ones as also for yourself. Just curl up with a book (they have quite a few in the restaurant itself) and while away a quiet afternoon or two. Give it a try! IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99m pretty sure you would have a great time.'), ('Rated 3.0', 'RATED\n  Charming place in the heart of Koramangala, perfect for a quiet breakfast. The food tasted good, but the descriptions were a little misleading. I asked for a BLT sandwich and got a BLT sub instead. The waiters were friendly, and willing to customise chai. My main complaints were that the seating in the garden area and the attention of the waiters were not up to the mark.'), ('Rated 4.0', 'RATED\n  I walked into Mr. Beans for a Saturday brunch. This place serves Italian and continental food.\n\nYou could enjoy your meal over some board game.\nThis place is good to visit with family or friends. And if you want to have some time alone with a book to give you company, they have couple of books you can grab.\n\nThe food and service was good. Value for money. Decent ambience, seems to be an old house converted to a cafe. You can get parking.\n\nI would definitely recommend this place. Have great and amazing food!'), ('Rated 4.0', "RATED\n  Randomly decided to check out this place and fell completely in love with the decor. It's the perfect place for a sober chill sesh with friends and family. The food is not worth the price you pay for it but their shortbread cookies are AMAZING! A pretty relaxing outing for a weekday.\nTheir beverages are delicious too!"), ('Rated 4.0', 'RATED\n  Was looking out for a good Ravioli and voila got it here - exactly like the way I would love to have it any day!!!!\nPlace has a beautiful ambience outside and inside, food, coffee and Tea was delicious - served rightly. Good to visit place - outside is a bit noisy due to metro construction going on but inside has good seating and space.'), ('Rated 4.0', 'RATED\n  Mr. Beans is a lovely cafe. Lovely food, courteous service and pretty interiors. Particularly liked the coffee and tea that we had. The food is not extraordinary, but it tasted fresh. The whole experience is a charmer, and is the perfect hideout with your loved ones as also for yourself. Just curl up with a book (they have quite a few in the restaurant itself) and while away a quiet afternoon or two. Give it a try! IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99m pretty sure you would have a great time.'), ('Rated 3.0', 'RATED\n  Charming place in the heart of Koramangala, perfect for a quiet breakfast. The food tasted good, but the descriptions were a little misleading. I asked for a BLT sandwich and got a BLT sub instead. The waiters were friendly, and willing to customise chai. My main complaints were that the seating in the garden area and the attention of the waiters were not up to the mark.'), ('Rated 4.0', 'RATED\n  I walked into Mr. Beans for a Saturday brunch. This place serves Italian and continental food.\n\nYou could enjoy your meal over some board game.\nThis place is good to visit with family or friends. And if you want to have some time alone with a book to give you company, they have couple of books you can grab.\n\nThe food and service was good. Value for money. Decent ambience, seems to be an old house converted to a cafe. You can get parking.\n\nI would definitely recommend this place. Have great and amazing food!'), ('Rated 4.0', "RATED\n  Randomly decided to check out this place and fell completely in love with the decor. It's the perfect place for a sober chill sesh with friends and family. The food is not worth the price you pay for it but their shortbread cookies are AMAZING! A pretty relaxing outing for a weekday.\nTheir beverages are delicious too!"), ('Rated 4.0', 'RATED\n  Was looking out for a good Ravioli and voila got it here - exactly like the way I would love to have it any day!!!!\nPlace has a beautiful ambience outside and inside, food, coffee and Tea was delicious - served rightly. Good to visit place - outside is a bit noisy due to metro construction going on but inside has good seating and space.'), ('Rated 4.0', 'RATED\n  Mr. Beans is a lovely cafe. Lovely food, courteous service and pretty interiors. Particularly liked the coffee and tea that we had. The food is not extraordinary, but it tasted fresh. The whole experience is a charmer, and is the perfect hideout with your loved ones as also for yourself. Just curl up with a book (they have quite a few in the restaurant itself) and while away a quiet afternoon or two. Give it a try! IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99m pretty sure you would have a great time.'), ('Rated 3.0', 'RATED\n  Charming place in the heart of Koramangala, perfect for a quiet breakfast. The food tasted good, but the descriptions were a little misleading. I asked for a BLT sandwich and got a BLT sub instead. The waiters were friendly, and willing to customise chai. My main complaints were that the seating in the garden area and the attention of the waiters were not up to the mark.'), ('Rated 4.0', 'RATED\n  I walked into Mr. Beans for a Saturday brunch. This place serves Italian and continental food.\n\nYou could enjoy your meal over some board game.\nThis place is good to visit with family or friends. And if you want to have some time alone with a book to give you company, they have couple of books you can grab.\n\nThe food and service was good. Value for money. Decent ambience, seems to be an old house converted to a cafe. You can get parking.\n\nI would definitely recommend this place. Have great and amazing food!'), ('Rated 4.0', "RATED\n  Randomly decided to check out this place and fell completely in love with the decor. It's the perfect place for a sober chill sesh with friends and family. The food is not worth the price you pay for it but their shortbread cookies are AMAZING! A pretty relaxing outing for a weekday.\nTheir beverages are delicious too!"), ('Rated 4.0', 'RATED\n  Was looking out for a good Ravioli and voila got it here - exactly like the way I would love to have it any day!!!!\nPlace has a beautiful ambience outside and inside, food, coffee and Tea was delicious - served rightly. Good to visit place - outside is a bit noisy due to metro construction going on but inside has good seating and space.'), ('Rated 3.0', "RATED\n \nWith a little confusing setup with a mix of retro parsi style cafe and the contemporary posters...this place needs a little bit of love interior wise. Just decide a theme and go from there pls.\nFood was okay, tasty but not great. Tried the risotto and the much recommended waffle. Also zomato says pancakes are quite popular but it seems they don't serve them...fact check pls.\nThe staff was nice and cordial.\nI liked this place but it's not going to be my go to destination."), ('Rated 4.0', 'RATED\n  It really is a quaint little home in the streets of Koramangala. Such a pleasantly stowed away place, away from the hustle and bustle of the rest of the maddening Koramangala. The food was all satisfactory and tasted well - the soup and the ravioli were great. The mushroom on toast needed some more of a creamy sauce. The banoffee pie was served in a narrow mouthed jar and while it tasted good, the jar is unwieldy to serve something so layered. Overall, a good place, polite staff and mostly great good.'), ('Rated 5.0', 'RATED\n  This is an amazing place for an impressive breakfast! And we really loved everything about the cafe.\nSuch a beautiful ambience..board games..welcoming staff..its just perfect!\nMasala omlette was really well cooked and omlette Verde is a must have.\nThey have an extensive menu and you will have lot of options to chose from.\nThis should definitely be on your list for amazing food and to spend a nice relaxed time with family or friends :)'), ('Rated 3.0', "RATED\n  This concept is very homely. The pictures make it look exciting but in actual, there's something lacking, a feeling of excitement maybe? Ordered the crispy chicken with a spicy dressing which came in with a jalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o mayo dip and was just fine. The mushroom and cheese ravioli was absolute bliss. It looked very promising and delivered just that. Perfect blend of creamy garlicky bliss. Just super yum. The pizza was the major put down. We ordered the classic Margherita. The cheese on top appeared to be burnt, completely disappointed, we asked the chef to re make the same. I'd say the pizza wasn't very apetising. For desert, we tried the chocolate mousse. Typically rich and creamy with a side portion of a heart shaped cookie. Again, really good."), ('Rated 3.0', 'RATED\n  Been to this place couple of times. The ambiance, as the name suggests, is home like and peaceful , though it is present on the main road. The food taste is ok. Can be improved. Service is good.'), ('Rated 3.0', "RATED\n \nWith a little confusing setup with a mix of retro parsi style cafe and the contemporary posters...this place needs a little bit of love interior wise. Just decide a theme and go from there pls.\nFood was okay, tasty but not great. Tried the risotto and the much recommended waffle. Also zomato says pancakes are quite popular but it seems they don't serve them...fact check pls.\nThe staff was nice and cordial.\nI liked this place but it's not going to be my go to destination."), ('Rated 4.0', 'RATED\n  It really is a quaint little home in the streets of Koramangala. Such a pleasantly stowed away place, away from the hustle and bustle of the rest of the maddening Koramangala. The food was all satisfactory and tasted well - the soup and the ravioli were great. The mushroom on toast needed some more of a creamy sauce. The banoffee pie was served in a narrow mouthed jar and while it tasted good, the jar is unwieldy to serve something so layered. Overall, a good place, polite staff and mostly great good.'), ('Rated 5.0', 'RATED\n  This is an amazing place for an impressive breakfast! And we really loved everything about the cafe.\nSuch a beautiful ambience..board games..welcoming staff..its just perfect!\nMasala omlette was really well cooked and omlette Verde is a must have.\nThey have an extensive menu and you will have lot of options to chose from.\nThis should definitely be on your list for amazing food and to spend a nice relaxed time with family or friends :)'), ('Rated 3.0', "RATED\n  This concept is very homely. The pictures make it look exciting but in actual, there's something lacking, a feeling of excitement maybe? Ordered the crispy chicken with a spicy dressing which came in with a jalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o mayo dip and was just fine. The mushroom and cheese ravioli was absolute bliss. It looked very promising and delivered just that. Perfect blend of creamy garlicky bliss. Just super yum. The pizza was the major put down. We ordered the classic Margherita. The cheese on top appeared to be burnt, completely disappointed, we asked the chef to re make the same. I'd say the pizza wasn't very apetising. For desert, we tried the chocolate mousse. Typically rich and creamy with a side portion of a heart shaped cookie. Again, really good."), ('Rated 3.0', 'RATED\n  Been to this place couple of times. The ambiance, as the name suggests, is home like and peaceful , though it is present on the main road. The food taste is ok. Can be improved. Service is good.'), ('Rated 3.0', "RATED\n \nWith a little confusing setup with a mix of retro parsi style cafe and the contemporary posters...this place needs a little bit of love interior wise. Just decide a theme and go from there pls.\nFood was okay, tasty but not great. Tried the risotto and the much recommended waffle. Also zomato says pancakes are quite popular but it seems they don't serve them...fact check pls.\nThe staff was nice and cordial.\nI liked this place but it's not going to be my go to destination."), ('Rated 4.0', 'RATED\n  It really is a quaint little home in the streets of Koramangala. Such a pleasantly stowed away place, away from the hustle and bustle of the rest of the maddening Koramangala. The food was all satisfactory and tasted well - the soup and the ravioli were great. The mushroom on toast needed some more of a creamy sauce. The banoffee pie was served in a narrow mouthed jar and while it tasted good, the jar is unwieldy to serve something so layered. Overall, a good place, polite staff and mostly great good.'), ('Rated 5.0', 'RATED\n  This is an amazing place for an impressive breakfast! And we really loved everything about the cafe.\nSuch a beautiful ambience..board games..welcoming staff..its just perfect!\nMasala omlette was really well cooked and omlette Verde is a must have.\nThey have an extensive menu and you will have lot of options to chose from.\nThis should definitely be on your list for amazing food and to spend a nice relaxed time with family or friends :)'), ('Rated 3.0', "RATED\n  This concept is very homely. The pictures make it look exciting but in actual, there's something lacking, a feeling of excitement maybe? Ordered the crispy chicken with a spicy dressing which came in with a jalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o mayo dip and was just fine. The mushroom and cheese ravioli was absolute bliss. It looked very promising and delivered just that. Perfect blend of creamy garlicky bliss. Just super yum. The pizza was the major put down. We ordered the classic Margherita. The cheese on top appeared to be burnt, completely disappointed, we asked the chef to re make the same. I'd say the pizza wasn't very apetising. For desert, we tried the chocolate mousse. Typically rich and creamy with a side portion of a heart shaped cookie. Again, really good."), ('Rated 3.0', 'RATED\n  Been to this place couple of times. The ambiance, as the name suggests, is home like and peaceful , though it is present on the main road. The food taste is ok. Can be improved. Service is good.'), ('Rated 3.0', "RATED\n \nWith a little confusing setup with a mix of retro parsi style cafe and the contemporary posters...this place needs a little bit of love interior wise. Just decide a theme and go from there pls.\nFood was okay, tasty but not great. Tried the risotto and the much recommended waffle. Also zomato says pancakes are quite popular but it seems they don't serve them...fact check pls.\nThe staff was nice and cordial.\nI liked this place but it's not going to be my go to destination."), ('Rated 4.0', 'RATED\n  It really is a quaint little home in the streets of Koramangala. Such a pleasantly stowed away place, away from the hustle and bustle of the rest of the maddening Koramangala. The food was all satisfactory and tasted well - the soup and the ravioli were great. The mushroom on toast needed some more of a creamy sauce. The banoffee pie was served in a narrow mouthed jar and while it tasted good, the jar is unwieldy to serve something so layered. Overall, a good place, polite staff and mostly great good.'), ('Rated 5.0', 'RATED\n  This is an amazing place for an impressive breakfast! And we really loved everything about the cafe.\nSuch a beautiful ambience..board games..welcoming staff..its just perfect!\nMasala omlette was really well cooked and omlette Verde is a must have.\nThey have an extensive menu and you will have lot of options to chose from.\nThis should definitely be on your list for amazing food and to spend a nice relaxed time with family or friends :)'), ('Rated 3.0', "RATED\n  This concept is very homely. The pictures make it look exciting but in actual, there's something lacking, a feeling of excitement maybe? Ordered the crispy chicken with a spicy dressing which came in with a jalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o mayo dip and was just fine. The mushroom and cheese ravioli was absolute bliss. It looked very promising and delivered just that. Perfect blend of creamy garlicky bliss. Just super yum. The pizza was the major put down. We ordered the classic Margherita. The cheese on top appeared to be burnt, completely disappointed, we asked the chef to re make the same. I'd say the pizza wasn't very apetising. For desert, we tried the chocolate mousse. Typically rich and creamy with a side portion of a heart shaped cookie. Again, really good."), ('Rated 3.0', 'RATED\n  Been to this place couple of times. The ambiance, as the name suggests, is home like and peaceful , though it is present on the main road. The food taste is ok. Can be improved. Service is good.'), ('Rated 3.0', "RATED\n \nWith a little confusing setup with a mix of retro parsi style cafe and the contemporary posters...this place needs a little bit of love interior wise. Just decide a theme and go from there pls.\nFood was okay, tasty but not great. Tried the risotto and the much recommended waffle. Also zomato says pancakes are quite popular but it seems they don't serve them...fact check pls.\nThe staff was nice and cordial.\nI liked this place but it's not going to be my go to destination."), ('Rated 4.0', 'RATED\n  It really is a quaint little home in the streets of Koramangala. Such a pleasantly stowed away place, away from the hustle and bustle of the rest of the maddening Koramangala. The food was all satisfactory and tasted well - the soup and the ravioli were great. The mushroom on toast needed some more of a creamy sauce. The banoffee pie was served in a narrow mouthed jar and while it tasted good, the jar is unwieldy to serve something so layered. Overall, a good place, polite staff and mostly great good.'), ('Rated 5.0', 'RATED\n  This is an amazing place for an impressive breakfast! And we really loved everything about the cafe.\nSuch a beautiful ambience..board games..welcoming staff..its just perfect!\nMasala omlette was really well cooked and omlette Verde is a must have.\nThey have an extensive menu and you will have lot of options to chose from.\nThis should definitely be on your list for amazing food and to spend a nice relaxed time with family or friends :)'), ('Rated 3.0', "RATED\n  This concept is very homely. The pictures make it look exciting but in actual, there's something lacking, a feeling of excitement maybe? Ordered the crispy chicken with a spicy dressing which came in with a jalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o mayo dip and was just fine. The mushroom and cheese ravioli was absolute bliss. It looked very promising and delivered just that. Perfect blend of creamy garlicky bliss. Just super yum. The pizza was the major put down. We ordered the classic Margherita. The cheese on top appeared to be burnt, completely disappointed, we asked the chef to re make the same. I'd say the pizza wasn't very apetising. For desert, we tried the chocolate mousse. Typically rich and creamy with a side portion of a heart shaped cookie. Again, really good."), ('Rated 3.0', 'RATED\n  Been to this place couple of times. The ambiance, as the name suggests, is home like and peaceful , though it is present on the main road. The food taste is ok. Can be improved. Service is good.'), ('Rated 3.0', "RATED\n \nWith a little confusing setup with a mix of retro parsi style cafe and the contemporary posters...this place needs a little bit of love interior wise. Just decide a theme and go from there pls.\nFood was okay, tasty but not great. Tried the risotto and the much recommended waffle. Also zomato says pancakes are quite popular but it seems they don't serve them...fact check pls.\nThe staff was nice and cordial.\nI liked this place but it's not going to be my go to destination."), ('Rated 4.0', 'RATED\n  It really is a quaint little home in the streets of Koramangala. Such a pleasantly stowed away place, away from the hustle and bustle of the rest of the maddening Koramangala. The food was all satisfactory and tasted well - the soup and the ravioli were great. The mushroom on toast needed some more of a creamy sauce. The banoffee pie was served in a narrow mouthed jar and while it tasted good, the jar is unwieldy to serve something so layered. Overall, a good place, polite staff and mostly great good.'), ('Rated 5.0', 'RATED\n  This is an amazing place for an impressive breakfast! And we really loved everything about the cafe.\nSuch a beautiful ambience..board games..welcoming staff..its just perfect!\nMasala omlette was really well cooked and omlette Verde is a must have.\nThey have an extensive menu and you will have lot of options to chose from.\nThis should definitely be on your list for amazing food and to spend a nice relaxed time with family or friends :)'), ('Rated 3.0', "RATED\n  This concept is very homely. The pictures make it look exciting but in actual, there's something lacking, a feeling of excitement maybe? Ordered the crispy chicken with a spicy dressing which came in with a jalapeÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±o mayo dip and was just fine. The mushroom and cheese ravioli was absolute bliss. It looked very promising and delivered just that. Perfect blend of creamy garlicky bliss. Just super yum. The pizza was the major put down. We ordered the classic Margherita. The cheese on top appeared to be burnt, completely disappointed, we asked the chef to re make the same. I'd say the pizza wasn't very apetising. For desert, we tried the chocolate mousse. Typically rich and creamy with a side portion of a heart shaped cookie. Again, really good."), ('Rated 3.0', 'RATED\n  Been to this place couple of times. The ambiance, as the name suggests, is home like and peaceful , though it is present on the main road. The food taste is ok. Can be improved. Service is good.'), ('Rated 3.0', 'RATED\n  Ordered the egg with a twist combo, American hot dog, Asian chkn sandwich, cappuccino.\nThe egg with a twist combo was extremely disappointing (which anybody could make at home), hot dog was okay (nothing - special), sandwich was good though and so was the coffee.'), ('Rated 4.0', "RATED\n  It's actually a home, transformed to a Cafe. They got cozy tiny small rooms, which cute wall paints all over the cafe.\n\nMore importantly they got a foosball table, and if you want to play, you need to deposit 100 bucks for the ball. (this is for security purpose :) )\n\nComing to the food,\n\n1. Garlic bread, nothing special, it was very much crunchy and presentation was nice.\n\n2. Roasted cherry tomato soup, This was absolutely refreshing for a Sunday hangover brunch.\n\n3. Eggs with a twist combo, okay types.\n\n4. Brownie Millionaire, This is suppose to be their Signature shake, but I felt it was not too great. Just like random brownie shakes.\n\n5. Cold Coffee, this was good with a strong flavour.\n\nOverall, I felt the food was too overrated compared to other cafes in Koramangala area, this might be coz of the location.\n\nFood: 3.5/5\nService: 4/5\nAmbiance: 4/5\n\nThank you for the foosball table Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89"), ('Rated 4.0', "RATED\n  The place is quite, spacious and really pretty giving a very comfy,homely vibe. The service was nice but a little slow. \nWe ordered a cheese and mushroom ravioli in red sauce. It didn't smell very tempting but the taste was quite good. We also had some waffles with maple syrup and vanilla ice cream. They were fresh and light but the serving was a lot. There were 3 good sized waffles.\nOverall a really nice place to go and relax and have some good food."), ('Rated 5.0', 'RATED\n  Mr. Bean cafe is a home which is transformed into cafe which gives it a very cozy and homely ambiance.\nIt has a contemporary as well as vintage look.\nThis place is perfect for spending quality time with your friends. They have few table games which you can enjoy while having food . I would like to mention that they have foosball table as wellÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c.\nNow comes to the food, we ordered pizza and pasta both were pretty good just in our case pizza crust was bit overcooked but i will not reduce a star for that.Drinks were really nice.\nStaff is friendly and their service is really quick...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\nOverall it was a very cozy experience, if you want to spend some quality time with friend or girlfriend, this place is for you.\nIf you want to see what i ate please check the picture I will mention the item name in description of images'), ('Rated 5.0', 'RATED\n  The staff was really friendly. Very comforting atmosphere and the food is up to its quality. Should definately try the hot beverage French kiss and the garden pizza. A heads up to visiting soon again.'), ('Rated 3.0', 'RATED\n  Ordered the egg with a twist combo, American hot dog, Asian chkn sandwich, cappuccino.\nThe egg with a twist combo was extremely disappointing (which anybody could make at home), hot dog was okay (nothing - special), sandwich was good though and so was the coffee.'), ('Rated 4.0', "RATED\n  It's actually a home, transformed to a Cafe. They got cozy tiny small rooms, which cute wall paints all over the cafe.\n\nMore importantly they got a foosball table, and if you want to play, you need to deposit 100 bucks for the ball. (this is for security purpose :) )\n\nComing to the food,\n\n1. Garlic bread, nothing special, it was very much crunchy and presentation was nice.\n\n2. Roasted cherry tomato soup, This was absolutely refreshing for a Sunday hangover brunch.\n\n3. Eggs with a twist combo, okay types.\n\n4. Brownie Millionaire, This is suppose to be their Signature shake, but I felt it was not too great. Just like random brownie shakes.\n\n5. Cold Coffee, this was good with a strong flavour.\n\nOverall, I felt the food was too overrated compared to other cafes in Koramangala area, this might be coz of the location.\n\nFood: 3.5/5\nService: 4/5\nAmbiance: 4/5\n\nThank you for the foosball table Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89"), ('Rated 4.0', "RATED\n  The place is quite, spacious and really pretty giving a very comfy,homely vibe. The service was nice but a little slow. \nWe ordered a cheese and mushroom ravioli in red sauce. It didn't smell very tempting but the taste was quite good. We also had some waffles with maple syrup and vanilla ice cream. They were fresh and light but the serving was a lot. There were 3 good sized waffles.\nOverall a really nice place to go and relax and have some good food."), ('Rated 5.0', 'RATED\n  Mr. Bean cafe is a home which is transformed into cafe which gives it a very cozy and homely ambiance.\nIt has a contemporary as well as vintage look.\nThis place is perfect for spending quality time with your friends. They have few table games which you can enjoy while having food . I would like to mention that they have foosball table as wellÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c.\nNow comes to the food, we ordered pizza and pasta both were pretty good just in our case pizza crust was bit overcooked but i will not reduce a star for that.Drinks were really nice.\nStaff is friendly and their service is really quick...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\nOverall it was a very cozy experience, if you want to spend some quality time with friend or girlfriend, this place is for you.\nIf you want to see what i ate please check the picture I will mention the item name in description of images'), ('Rated 5.0', 'RATED\n  The staff was really friendly. Very comforting atmosphere and the food is up to its quality. Should definately try the hot beverage French kiss and the garden pizza. A heads up to visiting soon again.'), ('Rated 3.0', 'RATED\n  Ordered the egg with a twist combo, American hot dog, Asian chkn sandwich, cappuccino.\nThe egg with a twist combo was extremely disappointing (which anybody could make at home), hot dog was okay (nothing - special), sandwich was good though and so was the coffee.'), ('Rated 4.0', "RATED\n  It's actually a home, transformed to a Cafe. They got cozy tiny small rooms, which cute wall paints all over the cafe.\n\nMore importantly they got a foosball table, and if you want to play, you need to deposit 100 bucks for the ball. (this is for security purpose :) )\n\nComing to the food,\n\n1. Garlic bread, nothing special, it was very much crunchy and presentation was nice.\n\n2. Roasted cherry tomato soup, This was absolutely refreshing for a Sunday hangover brunch.\n\n3. Eggs with a twist combo, okay types.\n\n4. Brownie Millionaire, This is suppose to be their Signature shake, but I felt it was not too great. Just like random brownie shakes.\n\n5. Cold Coffee, this was good with a strong flavour.\n\nOverall, I felt the food was too overrated compared to other cafes in Koramangala area, this might be coz of the location.\n\nFood: 3.5/5\nService: 4/5\nAmbiance: 4/5\n\nThank you for the foosball table Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89"), ('Rated 4.0', "RATED\n  The place is quite, spacious and really pretty giving a very comfy,homely vibe. The service was nice but a little slow. \nWe ordered a cheese and mushroom ravioli in red sauce. It didn't smell very tempting but the taste was quite good. We also had some waffles with maple syrup and vanilla ice cream. They were fresh and light but the serving was a lot. There were 3 good sized waffles.\nOverall a really nice place to go and relax and have some good food."), ('Rated 5.0', 'RATED\n  Mr. Bean cafe is a home which is transformed into cafe which gives it a very cozy and homely ambiance.\nIt has a contemporary as well as vintage look.\nThis place is perfect for spending quality time with your friends. They have few table games which you can enjoy while having food . I would like to mention that they have foosball table as wellÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c.\nNow comes to the food, we ordered pizza and pasta both were pretty good just in our case pizza crust was bit overcooked but i will not reduce a star for that.Drinks were really nice.\nStaff is friendly and their service is really quick...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\nOverall it was a very cozy experience, if you want to spend some quality time with friend or girlfriend, this place is for you.\nIf you want to see what i ate please check the picture I will mention the item name in description of images'), ('Rated 5.0', 'RATED\n  The staff was really friendly. Very comforting atmosphere and the food is up to its quality. Should definately try the hot beverage French kiss and the garden pizza. A heads up to visiting soon again.'), ('Rated 3.0', 'RATED\n  Ordered the egg with a twist combo, American hot dog, Asian chkn sandwich, cappuccino.\nThe egg with a twist combo was extremely disappointing (which anybody could make at home), hot dog was okay (nothing - special), sandwich was good though and so was the coffee.'), ('Rated 4.0', "RATED\n  It's actually a home, transformed to a Cafe. They got cozy tiny small rooms, which cute wall paints all over the cafe.\n\nMore importantly they got a foosball table, and if you want to play, you need to deposit 100 bucks for the ball. (this is for security purpose :) )\n\nComing to the food,\n\n1. Garlic bread, nothing special, it was very much crunchy and presentation was nice.\n\n2. Roasted cherry tomato soup, This was absolutely refreshing for a Sunday hangover brunch.\n\n3. Eggs with a twist combo, okay types.\n\n4. Brownie Millionaire, This is suppose to be their Signature shake, but I felt it was not too great. Just like random brownie shakes.\n\n5. Cold Coffee, this was good with a strong flavour.\n\nOverall, I felt the food was too overrated compared to other cafes in Koramangala area, this might be coz of the location.\n\nFood: 3.5/5\nService: 4/5\nAmbiance: 4/5\n\nThank you for the foosball table Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89"), ('Rated 4.0', "RATED\n  The place is quite, spacious and really pretty giving a very comfy,homely vibe. The service was nice but a little slow. \nWe ordered a cheese and mushroom ravioli in red sauce. It didn't smell very tempting but the taste was quite good. We also had some waffles with maple syrup and vanilla ice cream. They were fresh and light but the serving was a lot. There were 3 good sized waffles.\nOverall a really nice place to go and relax and have some good food."), ('Rated 5.0', 'RATED\n  Mr. Bean cafe is a home which is transformed into cafe which gives it a very cozy and homely ambiance.\nIt has a contemporary as well as vintage look.\nThis place is perfect for spending quality time with your friends. They have few table games which you can enjoy while having food . I would like to mention that they have foosball table as wellÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c.\nNow comes to the food, we ordered pizza and pasta both were pretty good just in our case pizza crust was bit overcooked but i will not reduce a star for that.Drinks were really nice.\nStaff is friendly and their service is really quick...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\nOverall it was a very cozy experience, if you want to spend some quality time with friend or girlfriend, this place is for you.\nIf you want to see what i ate please check the picture I will mention the item name in description of images'), ('Rated 5.0', 'RATED\n  The staff was really friendly. Very comforting atmosphere and the food is up to its quality. Should definately try the hot beverage French kiss and the garden pizza. A heads up to visiting soon again.'), ('Rated 3.0', 'RATED\n  Ordered the egg with a twist combo, American hot dog, Asian chkn sandwich, cappuccino.\nThe egg with a twist combo was extremely disappointing (which anybody could make at home), hot dog was okay (nothing - special), sandwich was good though and so was the coffee.'), ('Rated 4.0', "RATED\n  It's actually a home, transformed to a Cafe. They got cozy tiny small rooms, which cute wall paints all over the cafe.\n\nMore importantly they got a foosball table, and if you want to play, you need to deposit 100 bucks for the ball. (this is for security purpose :) )\n\nComing to the food,\n\n1. Garlic bread, nothing special, it was very much crunchy and presentation was nice.\n\n2. Roasted cherry tomato soup, This was absolutely refreshing for a Sunday hangover brunch.\n\n3. Eggs with a twist combo, okay types.\n\n4. Brownie Millionaire, This is suppose to be their Signature shake, but I felt it was not too great. Just like random brownie shakes.\n\n5. Cold Coffee, this was good with a strong flavour.\n\nOverall, I felt the food was too overrated compared to other cafes in Koramangala area, this might be coz of the location.\n\nFood: 3.5/5\nService: 4/5\nAmbiance: 4/5\n\nThank you for the foosball table Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89"), ('Rated 4.0', "RATED\n  The place is quite, spacious and really pretty giving a very comfy,homely vibe. The service was nice but a little slow. \nWe ordered a cheese and mushroom ravioli in red sauce. It didn't smell very tempting but the taste was quite good. We also had some waffles with maple syrup and vanilla ice cream. They were fresh and light but the serving was a lot. There were 3 good sized waffles.\nOverall a really nice place to go and relax and have some good food."), ('Rated 5.0', 'RATED\n  Mr. Bean cafe is a home which is transformed into cafe which gives it a very cozy and homely ambiance.\nIt has a contemporary as well as vintage look.\nThis place is perfect for spending quality time with your friends. They have few table games which you can enjoy while having food . I would like to mention that they have foosball table as wellÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9c.\nNow comes to the food, we ordered pizza and pasta both were pretty good just in our case pizza crust was bit overcooked but i will not reduce a star for that.Drinks were really nice.\nStaff is friendly and their service is really quick...Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81\nOverall it was a very cozy experience, if you want to spend some quality time with friend or girlfriend, this place is for you.\nIf you want to see what i ate please check the picture I will mention the item name in description of images'), ('Rated 5.0', 'RATED\n  The staff was really friendly. Very comforting atmosphere and the food is up to its quality. Should definately try the hot beverage French kiss and the garden pizza. A heads up to visiting soon again.'), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle Free!\n\nVisited this place for lunch on a weekend. Got a table easily and a very comfortable one too. The decor is lovely and as rightly named, it a home turned into a cafe. They have board games too which you can pick up and play while at the cafe.\n\nWe ordered Mushroom on toast, Nachos Supreme, Mixed Sauce Pasta with Broccoli and Mediterranean Veg & Rice Platter. The mushroom on toast was delicious, Nachos and Rice platter were decent, the Pasta was a disappointment, the sauce was too thin and it was bland in taste. \n\nFor drinks, we had Kit Kat Shake, Mason Jar - Fresh Water Melon Juice, Boston Cranberry Iced Tea. Each one was amazing. \n\nService was fast and the servers were friendly.'), ('Rated 3.0', "RATED\n  Mr Beans- The place looks very quirky yet cute... Loved the concept how the place was designed. Thus 3 star for the look of the place. Was expecting the same from the food as well which unfortunately didn't turn out well. Whatever we ordered : chicken white pasta ( too dull to eat ) and waffle ( too sweet to eat).\nPlease improve the quality of your food , the place will then be overall go till 4 star at least."), ('Rated 4.0', 'RATED\n  Quite quiet, and peaceful to work in. They have really good cheesecake in a jar and pita with hummus. Service is good, although not the best.'), ('Rated 4.0', 'RATED\n  Lovely food.. we ordered a jamaican jerk chicken and garden basket pizza (name might be wrong)... both were awesome and yummy. Also a cappuccino and hot chocolate Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d which were heavenly in the cold weather. The decor of the place was great and cozy and comfy.. we played a few board games which was interesting too.. all in all it was a fun place and i would like to visit again....'), ('Rated 4.0', "RATED\n \nRead a lot of good reviews on zomato about this place and was quite impressed to visit it . Actually I won't do any justice by writing a review as I could not eat anything at this place but tried their coffee so would want to share my experience.\nOrdered for a latte Hazelnut, the coffee was smooth ,amazing in texture,warm and very good in taste . Loved the coffee.\nThe ambience is quite different from the other cafes as this is a cafe build in a house .\nThough the first look when you enter the cafe from outside is not that great, the entrance needs some improvement in order to attract more crowd . Have I not entered the cafe from the look of outside, I would have missed a wonderful place.\nGood place to spend some good time with friends or loved ones or even alone .\nThey have lot of board games as well .\nAll the best"), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle Free!\n\nVisited this place for lunch on a weekend. Got a table easily and a very comfortable one too. The decor is lovely and as rightly named, it a home turned into a cafe. They have board games too which you can pick up and play while at the cafe.\n\nWe ordered Mushroom on toast, Nachos Supreme, Mixed Sauce Pasta with Broccoli and Mediterranean Veg & Rice Platter. The mushroom on toast was delicious, Nachos and Rice platter were decent, the Pasta was a disappointment, the sauce was too thin and it was bland in taste. \n\nFor drinks, we had Kit Kat Shake, Mason Jar - Fresh Water Melon Juice, Boston Cranberry Iced Tea. Each one was amazing. \n\nService was fast and the servers were friendly.'), ('Rated 3.0', "RATED\n  Mr Beans- The place looks very quirky yet cute... Loved the concept how the place was designed. Thus 3 star for the look of the place. Was expecting the same from the food as well which unfortunately didn't turn out well. Whatever we ordered : chicken white pasta ( too dull to eat ) and waffle ( too sweet to eat).\nPlease improve the quality of your food , the place will then be overall go till 4 star at least."), ('Rated 4.0', 'RATED\n  Quite quiet, and peaceful to work in. They have really good cheesecake in a jar and pita with hummus. Service is good, although not the best.'), ('Rated 4.0', 'RATED\n  Lovely food.. we ordered a jamaican jerk chicken and garden basket pizza (name might be wrong)... both were awesome and yummy. Also a cappuccino and hot chocolate Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d which were heavenly in the cold weather. The decor of the place was great and cozy and comfy.. we played a few board games which was interesting too.. all in all it was a fun place and i would like to visit again....'), ('Rated 4.0', "RATED\n \nRead a lot of good reviews on zomato about this place and was quite impressed to visit it . Actually I won't do any justice by writing a review as I could not eat anything at this place but tried their coffee so would want to share my experience.\nOrdered for a latte Hazelnut, the coffee was smooth ,amazing in texture,warm and very good in taste . Loved the coffee.\nThe ambience is quite different from the other cafes as this is a cafe build in a house .\nThough the first look when you enter the cafe from outside is not that great, the entrance needs some improvement in order to attract more crowd . Have I not entered the cafe from the look of outside, I would have missed a wonderful place.\nGood place to spend some good time with friends or loved ones or even alone .\nThey have lot of board games as well .\nAll the best"), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle Free!\n\nVisited this place for lunch on a weekend. Got a table easily and a very comfortable one too. The decor is lovely and as rightly named, it a home turned into a cafe. They have board games too which you can pick up and play while at the cafe.\n\nWe ordered Mushroom on toast, Nachos Supreme, Mixed Sauce Pasta with Broccoli and Mediterranean Veg & Rice Platter. The mushroom on toast was delicious, Nachos and Rice platter were decent, the Pasta was a disappointment, the sauce was too thin and it was bland in taste. \n\nFor drinks, we had Kit Kat Shake, Mason Jar - Fresh Water Melon Juice, Boston Cranberry Iced Tea. Each one was amazing. \n\nService was fast and the servers were friendly.'), ('Rated 3.0', "RATED\n  Mr Beans- The place looks very quirky yet cute... Loved the concept how the place was designed. Thus 3 star for the look of the place. Was expecting the same from the food as well which unfortunately didn't turn out well. Whatever we ordered : chicken white pasta ( too dull to eat ) and waffle ( too sweet to eat).\nPlease improve the quality of your food , the place will then be overall go till 4 star at least."), ('Rated 4.0', 'RATED\n  Quite quiet, and peaceful to work in. They have really good cheesecake in a jar and pita with hummus. Service is good, although not the best.'), ('Rated 4.0', 'RATED\n  Lovely food.. we ordered a jamaican jerk chicken and garden basket pizza (name might be wrong)... both were awesome and yummy. Also a cappuccino and hot chocolate Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d which were heavenly in the cold weather. The decor of the place was great and cozy and comfy.. we played a few board games which was interesting too.. all in all it was a fun place and i would like to visit again....'), ('Rated 4.0', "RATED\n \nRead a lot of good reviews on zomato about this place and was quite impressed to visit it . Actually I won't do any justice by writing a review as I could not eat anything at this place but tried their coffee so would want to share my experience.\nOrdered for a latte Hazelnut, the coffee was smooth ,amazing in texture,warm and very good in taste . Loved the coffee.\nThe ambience is quite different from the other cafes as this is a cafe build in a house .\nThough the first look when you enter the cafe from outside is not that great, the entrance needs some improvement in order to attract more crowd . Have I not entered the cafe from the look of outside, I would have missed a wonderful place.\nGood place to spend some good time with friends or loved ones or even alone .\nThey have lot of board games as well .\nAll the best"), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle Free!\n\nVisited this place for lunch on a weekend. Got a table easily and a very comfortable one too. The decor is lovely and as rightly named, it a home turned into a cafe. They have board games too which you can pick up and play while at the cafe.\n\nWe ordered Mushroom on toast, Nachos Supreme, Mixed Sauce Pasta with Broccoli and Mediterranean Veg & Rice Platter. The mushroom on toast was delicious, Nachos and Rice platter were decent, the Pasta was a disappointment, the sauce was too thin and it was bland in taste. \n\nFor drinks, we had Kit Kat Shake, Mason Jar - Fresh Water Melon Juice, Boston Cranberry Iced Tea. Each one was amazing. \n\nService was fast and the servers were friendly.'), ('Rated 3.0', "RATED\n  Mr Beans- The place looks very quirky yet cute... Loved the concept how the place was designed. Thus 3 star for the look of the place. Was expecting the same from the food as well which unfortunately didn't turn out well. Whatever we ordered : chicken white pasta ( too dull to eat ) and waffle ( too sweet to eat).\nPlease improve the quality of your food , the place will then be overall go till 4 star at least."), ('Rated 4.0', 'RATED\n  Quite quiet, and peaceful to work in. They have really good cheesecake in a jar and pita with hummus. Service is good, although not the best.'), ('Rated 4.0', 'RATED\n  Lovely food.. we ordered a jamaican jerk chicken and garden basket pizza (name might be wrong)... both were awesome and yummy. Also a cappuccino and hot chocolate Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d which were heavenly in the cold weather. The decor of the place was great and cozy and comfy.. we played a few board games which was interesting too.. all in all it was a fun place and i would like to visit again....'), ('Rated 4.0', "RATED\n \nRead a lot of good reviews on zomato about this place and was quite impressed to visit it . Actually I won't do any justice by writing a review as I could not eat anything at this place but tried their coffee so would want to share my experience.\nOrdered for a latte Hazelnut, the coffee was smooth ,amazing in texture,warm and very good in taste . Loved the coffee.\nThe ambience is quite different from the other cafes as this is a cafe build in a house .\nThough the first look when you enter the cafe from outside is not that great, the entrance needs some improvement in order to attract more crowd . Have I not entered the cafe from the look of outside, I would have missed a wonderful place.\nGood place to spend some good time with friends or loved ones or even alone .\nThey have lot of board games as well .\nAll the best"), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle Free!\n\nVisited this place for lunch on a weekend. Got a table easily and a very comfortable one too. The decor is lovely and as rightly named, it a home turned into a cafe. They have board games too which you can pick up and play while at the cafe.\n\nWe ordered Mushroom on toast, Nachos Supreme, Mixed Sauce Pasta with Broccoli and Mediterranean Veg & Rice Platter. The mushroom on toast was delicious, Nachos and Rice platter were decent, the Pasta was a disappointment, the sauce was too thin and it was bland in taste. \n\nFor drinks, we had Kit Kat Shake, Mason Jar - Fresh Water Melon Juice, Boston Cranberry Iced Tea. Each one was amazing. \n\nService was fast and the servers were friendly.'), ('Rated 3.0', "RATED\n  Mr Beans- The place looks very quirky yet cute... Loved the concept how the place was designed. Thus 3 star for the look of the place. Was expecting the same from the food as well which unfortunately didn't turn out well. Whatever we ordered : chicken white pasta ( too dull to eat ) and waffle ( too sweet to eat).\nPlease improve the quality of your food , the place will then be overall go till 4 star at least."), ('Rated 4.0', 'RATED\n  Quite quiet, and peaceful to work in. They have really good cheesecake in a jar and pita with hummus. Service is good, although not the best.'), ('Rated 4.0', 'RATED\n  Lovely food.. we ordered a jamaican jerk chicken and garden basket pizza (name might be wrong)... both were awesome and yummy. Also a cappuccino and hot chocolate Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d which were heavenly in the cold weather. The decor of the place was great and cozy and comfy.. we played a few board games which was interesting too.. all in all it was a fun place and i would like to visit again....'), ('Rated 4.0', "RATED\n \nRead a lot of good reviews on zomato about this place and was quite impressed to visit it . Actually I won't do any justice by writing a review as I could not eat anything at this place but tried their coffee so would want to share my experience.\nOrdered for a latte Hazelnut, the coffee was smooth ,amazing in texture,warm and very good in taste . Loved the coffee.\nThe ambience is quite different from the other cafes as this is a cafe build in a house .\nThough the first look when you enter the cafe from outside is not that great, the entrance needs some improvement in order to attract more crowd . Have I not entered the cafe from the look of outside, I would have missed a wonderful place.\nGood place to spend some good time with friends or loved ones or even alone .\nThey have lot of board games as well .\nAll the best"), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle Free!\n\nVisited this place for lunch on a weekend. Got a table easily and a very comfortable one too. The decor is lovely and as rightly named, it a home turned into a cafe. They have board games too which you can pick up and play while at the cafe.\n\nWe ordered Mushroom on toast, Nachos Supreme, Mixed Sauce Pasta with Broccoli and Mediterranean Veg & Rice Platter. The mushroom on toast was delicious, Nachos and Rice platter were decent, the Pasta was a disappointment, the sauce was too thin and it was bland in taste. \n\nFor drinks, we had Kit Kat Shake, Mason Jar - Fresh Water Melon Juice, Boston Cranberry Iced Tea. Each one was amazing. \n\nService was fast and the servers were friendly.'), ('Rated 3.0', "RATED\n  Mr Beans- The place looks very quirky yet cute... Loved the concept how the place was designed. Thus 3 star for the look of the place. Was expecting the same from the food as well which unfortunately didn't turn out well. Whatever we ordered : chicken white pasta ( too dull to eat ) and waffle ( too sweet to eat).\nPlease improve the quality of your food , the place will then be overall go till 4 star at least."), ('Rated 4.0', 'RATED\n  Quite quiet, and peaceful to work in. They have really good cheesecake in a jar and pita with hummus. Service is good, although not the best.'), ('Rated 4.0', 'RATED\n  Lovely food.. we ordered a jamaican jerk chicken and garden basket pizza (name might be wrong)... both were awesome and yummy. Also a cappuccino and hot chocolate Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d which were heavenly in the cold weather. The decor of the place was great and cozy and comfy.. we played a few board games which was interesting too.. all in all it was a fun place and i would like to visit again....'), ('Rated 4.0', "RATED\n \nRead a lot of good reviews on zomato about this place and was quite impressed to visit it . Actually I won't do any justice by writing a review as I could not eat anything at this place but tried their coffee so would want to share my experience.\nOrdered for a latte Hazelnut, the coffee was smooth ,amazing in texture,warm and very good in taste . Loved the coffee.\nThe ambience is quite different from the other cafes as this is a cafe build in a house .\nThough the first look when you enter the cafe from outside is not that great, the entrance needs some improvement in order to attract more crowd . Have I not entered the cafe from the look of outside, I would have missed a wonderful place.\nGood place to spend some good time with friends or loved ones or even alone .\nThey have lot of board games as well .\nAll the best"), ('Rated 4.0', 'RATED\n  Mr. Beans is set in an old koramangla house and as the name says, is a very homely cafe! The decor is kept to minimal which makes the place looks open and big!\nThe food we ordered was absolutely fantastic. We ordered the Garlic bread, ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie, the garden in a basket pizza, gnocchi with meat and chicken Parmigiana. I would specially like to mention the ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie here, it was out of this world good! Do try\nThe desserts are also pretty decent. We had the cheese cake which was pretty good.'), ('Rated 3.0', 'RATED\n  Expected more from the name. Ambience was okayish. Food was good with a pretty good quantity. Location is pretty accessible too. Pasta was the dish ordered here which did meet expectations.'), ('Rated 4.0', 'RATED\n  Hade irish coffee there.\nPlace is very spacious , have enough seating space and you can work there as well.\nCoffee was very good and presentation was just awesome!\nVery polite staff.'), ('Rated 4.0', "RATED\n  Cozy little home turned into a cafe. Nice place to have a conversation or revisit old times with good food as a company.\nMust try - Shepherd's Pie. I can probably have it for everyday of the week ;)"), ('Rated 4.0', "RATED\n  Rate this place- 4.5\nReview- This is my all time favourite cafe in koramangala that gives me a very home like feel just as the name suggests.\nI practically ,love their breakfast specials and pizzas usually.\nTried their gnocchi with pesto sauce and hot chocolate for a change , which left me wanting for more as always!\nA definitely must visit cafe whether it's with family or a bunch of friends."), ('Rated 4.0', 'RATED\n  Mr. Beans is set in an old koramangla house and as the name says, is a very homely cafe! The decor is kept to minimal which makes the place looks open and big!\nThe food we ordered was absolutely fantastic. We ordered the Garlic bread, ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie, the garden in a basket pizza, gnocchi with meat and chicken Parmigiana. I would specially like to mention the ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie here, it was out of this world good! Do try\nThe desserts are also pretty decent. We had the cheese cake which was pretty good.'), ('Rated 3.0', 'RATED\n  Expected more from the name. Ambience was okayish. Food was good with a pretty good quantity. Location is pretty accessible too. Pasta was the dish ordered here which did meet expectations.'), ('Rated 4.0', 'RATED\n  Hade irish coffee there.\nPlace is very spacious , have enough seating space and you can work there as well.\nCoffee was very good and presentation was just awesome!\nVery polite staff.'), ('Rated 4.0', "RATED\n  Cozy little home turned into a cafe. Nice place to have a conversation or revisit old times with good food as a company.\nMust try - Shepherd's Pie. I can probably have it for everyday of the week ;)"), ('Rated 4.0', "RATED\n  Rate this place- 4.5\nReview- This is my all time favourite cafe in koramangala that gives me a very home like feel just as the name suggests.\nI practically ,love their breakfast specials and pizzas usually.\nTried their gnocchi with pesto sauce and hot chocolate for a change , which left me wanting for more as always!\nA definitely must visit cafe whether it's with family or a bunch of friends."), ('Rated 4.0', 'RATED\n  Mr. Beans is set in an old koramangla house and as the name says, is a very homely cafe! The decor is kept to minimal which makes the place looks open and big!\nThe food we ordered was absolutely fantastic. We ordered the Garlic bread, ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie, the garden in a basket pizza, gnocchi with meat and chicken Parmigiana. I would specially like to mention the ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie here, it was out of this world good! Do try\nThe desserts are also pretty decent. We had the cheese cake which was pretty good.'), ('Rated 3.0', 'RATED\n  Expected more from the name. Ambience was okayish. Food was good with a pretty good quantity. Location is pretty accessible too. Pasta was the dish ordered here which did meet expectations.'), ('Rated 4.0', 'RATED\n  Hade irish coffee there.\nPlace is very spacious , have enough seating space and you can work there as well.\nCoffee was very good and presentation was just awesome!\nVery polite staff.'), ('Rated 4.0', "RATED\n  Cozy little home turned into a cafe. Nice place to have a conversation or revisit old times with good food as a company.\nMust try - Shepherd's Pie. I can probably have it for everyday of the week ;)"), ('Rated 4.0', "RATED\n  Rate this place- 4.5\nReview- This is my all time favourite cafe in koramangala that gives me a very home like feel just as the name suggests.\nI practically ,love their breakfast specials and pizzas usually.\nTried their gnocchi with pesto sauce and hot chocolate for a change , which left me wanting for more as always!\nA definitely must visit cafe whether it's with family or a bunch of friends."), ('Rated 4.0', 'RATED\n  Mr. Beans is set in an old koramangla house and as the name says, is a very homely cafe! The decor is kept to minimal which makes the place looks open and big!\nThe food we ordered was absolutely fantastic. We ordered the Garlic bread, ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie, the garden in a basket pizza, gnocchi with meat and chicken Parmigiana. I would specially like to mention the ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie here, it was out of this world good! Do try\nThe desserts are also pretty decent. We had the cheese cake which was pretty good.'), ('Rated 3.0', 'RATED\n  Expected more from the name. Ambience was okayish. Food was good with a pretty good quantity. Location is pretty accessible too. Pasta was the dish ordered here which did meet expectations.'), ('Rated 4.0', 'RATED\n  Hade irish coffee there.\nPlace is very spacious , have enough seating space and you can work there as well.\nCoffee was very good and presentation was just awesome!\nVery polite staff.'), ('Rated 4.0', "RATED\n  Cozy little home turned into a cafe. Nice place to have a conversation or revisit old times with good food as a company.\nMust try - Shepherd's Pie. I can probably have it for everyday of the week ;)"), ('Rated 4.0', "RATED\n  Rate this place- 4.5\nReview- This is my all time favourite cafe in koramangala that gives me a very home like feel just as the name suggests.\nI practically ,love their breakfast specials and pizzas usually.\nTried their gnocchi with pesto sauce and hot chocolate for a change , which left me wanting for more as always!\nA definitely must visit cafe whether it's with family or a bunch of friends."), ('Rated 4.0', 'RATED\n  Mr. Beans is set in an old koramangla house and as the name says, is a very homely cafe! The decor is kept to minimal which makes the place looks open and big!\nThe food we ordered was absolutely fantastic. We ordered the Garlic bread, ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie, the garden in a basket pizza, gnocchi with meat and chicken Parmigiana. I would specially like to mention the ShepardÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s pie here, it was out of this world good! Do try\nThe desserts are also pretty decent. We had the cheese cake which was pretty good.'), ('Rated 3.0', 'RATED\n  Expected more from the name. Ambience was okayish. Food was good with a pretty good quantity. Location is pretty accessible too. Pasta was the dish ordered here which did meet expectations.'), ('Rated 4.0', 'RATED\n  Hade irish coffee there.\nPlace is very spacious , have enough seating space and you can work there as well.\nCoffee was very good and presentation was just awesome!\nVery polite staff.'), ('Rated 4.0', "RATED\n  Cozy little home turned into a cafe. Nice place to have a conversation or revisit old times with good food as a company.\nMust try - Shepherd's Pie. I can probably have it for everyday of the week ;)"), ('Rated 4.0', "RATED\n  Rate this place- 4.5\nReview- This is my all time favourite cafe in koramangala that gives me a very home like feel just as the name suggests.\nI practically ,love their breakfast specials and pizzas usually.\nTried their gnocchi with pesto sauce and hot chocolate for a change , which left me wanting for more as always!\nA definitely must visit cafe whether it's with family or a bunch of friends."), ('Rated 3.0', 'RATED\n  Mr beans is a cozy cafe situated near st johns....with an ambience which is perfect for people who enjoy the tranquility of such spaces far from the city hustle....\nThe food is the cafe type ...hence v ordered a simple greek salad....which was light and delicious and then we had the chicken and cheese toastie which was a little burnt...\nAs their waffles were well known we ordered the same with maple syrup and whipped cream....it wasnt as great as the presentation....\nFor the caffeine craving i ordered the pipping hot cinnamon macchiato...which was simply amazing\nOn the whole the places scores points with the ambience...as far as the food is concerned...it could benefit from more improvement....'), ('Rated 4.0', 'RATED\n  After a really long time found a cafe which has exceptional service and cozy ambience.\nGreat food and perfect to spend quality time with your friends.\nFood : 4/5\nAmbience : 4/5\nService : 5/5'), ('Rated 5.0', 'RATED\n  i just loved this place,great ambiance,superb service,board games are available,food is delicious,i will recommend for waffles,i had best waffles ever,sandwiches are also good, i loved irish coffee'), ('Rated 4.0', "RATED\n  This is my 2nd time to this cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82© and boi, I was blown by its food! It was a delight.... My friend and I ordered Jamaican Jerked Chicken which was out of the world especially the sauce, Rustic German Sausage (it's a huge plate... But definitely delicious) along with cafÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82© Pasha to sip to in between. This coffee is for sure one of the best chocolate based coffee I have stated... It's chocolaty and creamy taste, I still remember. And to satisfy our sweet craving Waffles and Belgian Chocolate Brownie with ice cream was ordered and it did live up to to its expectations. Overall a great food experience.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
Tipsy Bull was a great way to unwind on a Friday evening after the end of a stressful week. The ambience is ok, the space is great though, the service and the food were impeccable. The draughts were priced decently and it was great trying them out. The music was ok and dancing soon commenced. All in all, lively and welcoming.'), ('Rated 4.0', 'RATED\n  Was here on a weekday evening for a quick drink and quite liked the rooftop ambiance and bar x change concept. Settled for a table overseeing the out ring road traffic.\nFood is decent with a wide choice of beverages and off course depends on the rates one switch between beers and some hard liquor or classic cocktails.\nIdeal for office parties or a catch up with friends.'), ('Rated 4.0', 'RATED\n  Great place to hangout with friends and to drink!\nGreat bites as well!\nAmbience is pretty happening!\nClose to offices so very convenient!\nAnd service is also good'), ('Rated 3.0', "RATED\n  Its in bellandur,on the road side.Easily reachable Nice rooftop bar. There is no dance floor but they have live music.drinks and food was nice. I would say it's a 3.5 over all."), ('Rated 4.0', "RATED\n  Hands down, the best place to chill. I've been to the outlet at Indirangar, went to this one for the first time. Absolutely loved it. The food is amazing undoubtedly. Ambience is great. We ordered chicken manchow soup, chicken skewers, orange chilli chicken, peanuts, coorgi pork, chicken Peri Peri wings and drinks."), ('Rated 2.0', 'RATED\n  I was honestly not pleased with the ambience or the food. Both were bad. And being a rooftop, there should be some kind of ventilation. It was really hot and there were no fans. The place definitely needs a get up. They need to improve the ambience as soon as possible. The Indiranagar branch is way better than this. I canÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t complain about the service. The waiters were prompt and ready to help always. Coming to the food, the tikka seemed under cooked because the spices were raw and only the chicken was cooked. The nachos were a mess and the paneer sticks tasted stale. I really think there is room for improvement and since their other branch has such a good name, I think they can live up to the expectations.'), ('Rated 3.0', 'RATED\n  The initial plan was to go to FishermanÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s wharf on Haralur Road but then decided to try this place out. Good ambience and a different experience. Food and drinks were ok and had a good time. Would not mind going back.'), ('Rated 4.0', 'RATED\n  It was always my planning to go there once this time one of my friend called me to visit there.\nActually I m so happy with this visit it made our evening good place to hangout and fun with friends.'), ('Rated 4.0', 'RATED\n  I been visiting this place very frequently since 2016. ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a great place and always has a vibrant crowd. I absolutely love the roof top ambience and I think that the concept of a stock exchange is very cleve. The food and the cocktails are great. I really like the service and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s very nice cause the staff is always very friendly. IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d surely recommend Tipsy bull to all of my friends and family.'), ('Rated 5.0', 'RATED\n  I am very regular to this Place. Several Times I have Visited their Indira Nagar Branch. This outlet is also Very Nice. Amazing Ambiance. Brilliant Hospitality. Mouth watering Food, Quick Friendly Service. Highly Recommamded... Cheers!\n\nAmbiance : 5/5\nFood : 5/5\nService : 5/5\nValue for Money : 5/5'), ('Rated 4.0', 'RATED\n  I have been bere several times, since its close to my place and one of the most happening places in Bellandur.\nThe ambience is nice and airy since its on the roof top.\nThe theme is of stock exchange, where prices of alcohol changes with time, and you have to order from the app.\nYou will get alcohol for cheap before 8pm.\nFood tastes good and the service is quick.'), ('Rated 3.0', 'RATED\n  Been here four days back...\nQuite decent and happening place.\nWe ordered pitcher of Budweiser and we got the fresh glass with full of lipstick. This was the the first disappointment. The we ordered French fries with cheese and we got potato wedges with cheese.\nFood presentation was very nice. Taste was good.\nAmbience was excellent.'), ('Rated 4.0', "RATED\n  It's just awesome . The top up and down really feels like real stock exchange . It's really awesome while ordering the drinks based on the rates up n down. Loved the environment and ambiance."), ('Rated 4.0', 'RATED\n  I been visiting this place very frequently since 2016. ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a great place and always has a vibrant crowd. I absolutely love the roof top ambience and I think that the concept of a stock exchange is very cleve. The food and the cocktails are great. I really like the service and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s very nice cause the staff is always very friendly. IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d surely recommend Tipsy bull to all of my friends and family.'), ('Rated 5.0', 'RATED\n  I am very regular to this Place. Several Times I have Visited their Indira Nagar Branch. This outlet is also Very Nice. Amazing Ambiance. Brilliant Hospitality. Mouth watering Food, Quick Friendly Service. Highly Recommamded... Cheers!\n\nAmbiance : 5/5\nFood : 5/5\nService : 5/5\nValue for Money : 5/5'), ('Rated 4.0', 'RATED\n  I have been bere several times, since its close to my place and one of the most happening places in Bellandur.\nThe ambience is nice and airy since its on the roof top.\nThe theme is of stock exchange, where prices of alcohol changes with time, and you have to order from the app.\nYou will get alcohol for cheap before 8pm.\nFood tastes good and the service is quick.'), ('Rated 3.0', 'RATED\n  Been here four days back...\nQuite decent and happening place.\nWe ordered pitcher of Budweiser and we got the fresh glass with full of lipstick. This was the the first disappointment. The we ordered French fries with cheese and we got potato wedges with cheese.\nFood presentation was very nice. Taste was good.\nAmbience was excellent.'), ('Rated 4.0', "RATED\n  It's just awesome . The top up and down really feels like real stock exchange . It's really awesome while ordering the drinks based on the rates up n down. Loved the environment and ambiance."), ('Rated 3.0', 'RATED\n  We went for dinner party- food is so so. Drinks are good. Too many mosquitos though. The ambience was good. It is a terrace place. Specially good when it is raining'), ('Rated 3.0', 'RATED\n  This place is a real good place - worth dining with friends and family !\nThe theme of this restobar is very pleasing, the ambiance is just too good.\n\nThe place is not that much happening for partying and dance floor is also not that big and the DJ is also not of that quality.\n\nThis bar exchange has changing prices like sensex. The menu here is quiet exciting and bold.\n\nThe taste is YUMMY everything u order is just superb. Additional important thing, the washrooms (separate for male and female) is always clean, there is a dedicated sweeper to keep cleaning it.'), ('Rated 4.0', 'RATED\n  Friday night, great place to chill and have some drinks with their delicious starters. Nachos served generous quantity- was tangy , spicy tasty and too much for 2 person which is great. Peri peri chicken wings again a lip smacking dish to try with Old Monk. Chicken satay - big chunks of chicken tender and grilled- yummy. Over all a good place to spend time snacking and drinking.'), ('Rated 4.0', "RATED\n  This is a good place with good food and drinks.,\nThey have a creative concept i.e the prices of the drinks keeps on changing (similar to stock market) depending on the demand and you can order the drinks using an application. It's a good place to watch sports. The place is loud,so if you want to talk and have a conversation then you'll have to find a different place."), ('Rated 3.0', 'RATED\n  Ambiance is good. The trading market concept is unique in the locality. But the prices follow a definite pattern. Music is good. Food is okkish. A good roof top place. A goto place for hanging out with friends.'), ('Rated 3.0', 'RATED\n  We went for dinner party- food is so so. Drinks are good. Too many mosquitos though. The ambience was good. It is a terrace place. Specially good when it is raining'), ('Rated 3.0', 'RATED\n  This place is a real good place - worth dining with friends and family !\nThe theme of this restobar is very pleasing, the ambiance is just too good.\n\nThe place is not that much happening for partying and dance floor is also not that big and the DJ is also not of that quality.\n\nThis bar exchange has changing prices like sensex. The menu here is quiet exciting and bold.\n\nThe taste is YUMMY everything u order is just superb. Additional important thing, the washrooms (separate for male and female) is always clean, there is a dedicated sweeper to keep cleaning it.'), ('Rated 4.0', 'RATED\n  Friday night, great place to chill and have some drinks with their delicious starters. Nachos served generous quantity- was tangy , spicy tasty and too much for 2 person which is great. Peri peri chicken wings again a lip smacking dish to try with Old Monk. Chicken satay - big chunks of chicken tender and grilled- yummy. Over all a good place to spend time snacking and drinking.'), ('Rated 4.0', "RATED\n  This is a good place with good food and drinks.,\nThey have a creative concept i.e the prices of the drinks keeps on changing (similar to stock market) depending on the demand and you can order the drinks using an application. It's a good place to watch sports. The place is loud,so if you want to talk and have a conversation then you'll have to find a different place."), ('Rated 3.0', 'RATED\n  Ambiance is good. The trading market concept is unique in the locality. But the prices follow a definite pattern. Music is good. Food is okkish. A good roof top place. A goto place for hanging out with friends.'), ('Rated 3.0', 'RATED\n  We went for dinner party- food is so so. Drinks are good. Too many mosquitos though. The ambience was good. It is a terrace place. Specially good when it is raining'), ('Rated 3.0', 'RATED\n  This place is a real good place - worth dining with friends and family !\nThe theme of this restobar is very pleasing, the ambiance is just too good.\n\nThe place is not that much happening for partying and dance floor is also not that big and the DJ is also not of that quality.\n\nThis bar exchange has changing prices like sensex. The menu here is quiet exciting and bold.\n\nThe taste is YUMMY everything u order is just superb. Additional important thing, the washrooms (separate for male and female) is always clean, there is a dedicated sweeper to keep cleaning it.'), ('Rated 4.0', 'RATED\n  Friday night, great place to chill and have some drinks with their delicious starters. Nachos served generous quantity- was tangy , spicy tasty and too much for 2 person which is great. Peri peri chicken wings again a lip smacking dish to try with Old Monk. Chicken satay - big chunks of chicken tender and grilled- yummy. Over all a good place to spend time snacking and drinking.'), ('Rated 4.0', "RATED\n  This is a good place with good food and drinks.,\nThey have a creative concept i.e the prices of the drinks keeps on changing (similar to stock market) depending on the demand and you can order the drinks using an application. It's a good place to watch sports. The place is loud,so if you want to talk and have a conversation then you'll have to find a different place."), ('Rated 3.0', 'RATED\n  Ambiance is good. The trading market concept is unique in the locality. But the prices follow a definite pattern. Music is good. Food is okkish. A good roof top place. A goto place for hanging out with friends.'), ('Rated 5.0', 'RATED\n  One of the best place in sarjapur for drinks and dinner.\nTheir *Creamy Mustard grilled fish with garlic mashed potatoes is to die for.\nIt was finished before i could think about taking a picture of it.\n\nMocktails are good enough and starters are really good tasting specially Mushroom starters.\n\nGo to place for good food and good time and their Bar exchange price will keep you amused. Go early here to have a lower price on your drinks.'), ('Rated 5.0', 'RATED\n  Visited the Bellandur branch of tipsy bull. Drinks were great but the food was the real winner! Tried Chakna with a Twist, Spicy Chicken Orange chilli and Sundried Margherita pizza. All of it was amazing ?'), ('Rated 5.0', 'RATED\n  The name of the place is so apt! Tipsy Bull does get you Tipsy and really Tipsy if you know what I mean!\nNothing like coming after work - you can really start your weekend with a bang here. Not only the ambiance is fab but the music too - not too loud so you still can have a conversation.\nBest part is their ambience!'), ('Rated 5.0', 'RATED\n  Have come here 4-5 times now and not once was my experience disappointing!Something about Tipsy Bull makes my experience always amazing..I still remember my first time here with my colleagues, was so fascinated by the ambiance and the theme.Downloading the app and trying to score drinks at a lower price - its all so much fun.This is a nice place to party.'), ('Rated 5.0', "RATED\n  Visited this place with my friends on a weekday! The ambience was good..\nTheir ambience is really so good, much better than what I had anticipated! The theme is definitely exciting.\nEnjoyed the food.\nEnjoyed the drinks.\nStaff is excellent.. Service very good\nI say, if you haven't been here till now, you should plan a trip on weekends."), ('Rated 5.0', 'RATED\n  One of the best place in sarjapur for drinks and dinner.\nTheir *Creamy Mustard grilled fish with garlic mashed potatoes is to die for.\nIt was finished before i could think about taking a picture of it.\n\nMocktails are good enough and starters are really good tasting specially Mushroom starters.\n\nGo to place for good food and good time and their Bar exchange price will keep you amused. Go early here to have a lower price on your drinks.'), ('Rated 5.0', 'RATED\n  Visited the Bellandur branch of tipsy bull. Drinks were great but the food was the real winner! Tried Chakna with a Twist, Spicy Chicken Orange chilli and Sundried Margherita pizza. All of it was amazing ?'), ('Rated 5.0', 'RATED\n  The name of the place is so apt! Tipsy Bull does get you Tipsy and really Tipsy if you know what I mean!\nNothing like coming after work - you can really start your weekend with a bang here. Not only the ambiance is fab but the music too - not too loud so you still can have a conversation.\nBest part is their ambience!'), ('Rated 5.0', 'RATED\n  Have come here 4-5 times now and not once was my experience disappointing!Something about Tipsy Bull makes my experience always amazing..I still remember my first time here with my colleagues, was so fascinated by the ambiance and the theme.Downloading the app and trying to score drinks at a lower price - its all so much fun.This is a nice place to party.'), ('Rated 5.0', "RATED\n  Visited this place with my friends on a weekday! The ambience was good..\nTheir ambience is really so good, much better than what I had anticipated! The theme is definitely exciting.\nEnjoyed the food.\nEnjoyed the drinks.\nStaff is excellent.. Service very good\nI say, if you haven't been here till now, you should plan a trip on weekends."), ('Rated 5.0', 'RATED\n  Tipsy bull has recently become one of my favorite places to party at !!\nThe ambiance has such vibrancy to it. Also, the food is good too.\nTipsy bull functions like a stock exchange for booze. Love the concept and its execution here.\nStaff to are very amicable and helpful.\nGreat place.'), ('Rated 5.0', 'RATED\n  Tipsy Bull turned out to be much better than my expectation!!\nIt is a cool place to hangout, the concept is definitely worth checking out...\nThe decor and ambiance is really creative and cool.. Good food good drinks and real friendly staff. It is a nice place when you want a change in your environment and chill and let go of all the worries!\nWeekends here are fun...'), ('Rated 5.0', 'RATED\n  I like this place because of the whole ambiance which is so different and theme based.\nAmbiance is freaking amazing.. When you see the prices going up and down its nice and fun and keeps the excitement level up.\n\nHad hell good of a time here.\nWill visit again.'), ('Rated 5.0', "RATED\n  First time experience in a Bar exchange. Very cordial and friendly reception. They have an app based order for drinks where you can see the prices going up and down like the stock exchange. Food service is offline. We ordered non veg platter,murgh tikka (must try) comes in a unique metal box,fried fish in bread crumbs. In drinks Bud draught beer and whiskies (teacher's, black and white,black dog). If you choose wisely it won't be a pocket pinch. A must visit for a change and enjoy the musical ambience."), ('Rated 3.0', "RATED\n  It's a good place to hangout with friends and colleagues. The plus point being that it stays open till 1 even on weekdays unlike most Bangalore places. They have a foosball table to chill as well\n\nThe downside being that food isn't very great. Nachos were disappointing. Served with Doritos with some mayo and cabbage.\n\nVeg food platter was disappointing as well. Served pineapple, fried baby corns, paneer and har bhare kabab. Paneer was the only good thing out of the four.\n\nTried paneer masala pizza next. This was decent to have.\n\nAloo sandwich with potato wedges was okay too.\n\nFriends ordered Chicken ghost and tandoori chicken but were disappointed with both"), ('Rated 5.0', 'RATED\n  Tipsy bull has recently become one of my favorite places to party at !!\nThe ambiance has such vibrancy to it. Also, the food is good too.\nTipsy bull functions like a stock exchange for booze. Love the concept and its execution here.\nStaff to are very amicable and helpful.\nGreat place.'), ('Rated 5.0', 'RATED\n  Tipsy Bull turned out to be much better than my expectation!!\nIt is a cool place to hangout, the concept is definitely worth checking out...\nThe decor and ambiance is really creative and cool.. Good food good drinks and real friendly staff. It is a nice place when you want a change in your environment and chill and let go of all the worries!\nWeekends here are fun...'), ('Rated 5.0', 'RATED\n  I like this place because of the whole ambiance which is so different and theme based.\nAmbiance is freaking amazing.. When you see the prices going up and down its nice and fun and keeps the excitement level up.\n\nHad hell good of a time here.\nWill visit again.'), ('Rated 5.0', "RATED\n  First time experience in a Bar exchange. Very cordial and friendly reception. They have an app based order for drinks where you can see the prices going up and down like the stock exchange. Food service is offline. We ordered non veg platter,murgh tikka (must try) comes in a unique metal box,fried fish in bread crumbs. In drinks Bud draught beer and whiskies (teacher's, black and white,black dog). If you choose wisely it won't be a pocket pinch. A must visit for a change and enjoy the musical ambience."), ('Rated 3.0', "RATED\n  It's a good place to hangout with friends and colleagues. The plus point being that it stays open till 1 even on weekdays unlike most Bangalore places. They have a foosball table to chill as well\n\nThe downside being that food isn't very great. Nachos were disappointing. Served with Doritos with some mayo and cabbage.\n\nVeg food platter was disappointing as well. Served pineapple, fried baby corns, paneer and har bhare kabab. Paneer was the only good thing out of the four.\n\nTried paneer masala pizza next. This was decent to have.\n\nAloo sandwich with potato wedges was okay too.\n\nFriends ordered Chicken ghost and tandoori chicken but were disappointed with both"), ('Rated 5.0', 'RATED\n  Tipsy bull has recently become one of my favorite places to party at !!\nThe ambiance has such vibrancy to it. Also, the food is good too.\nTipsy bull functions like a stock exchange for booze. Love the concept and its execution here.\nStaff to are very amicable and helpful.\nGreat place.'), ('Rated 5.0', 'RATED\n  Tipsy Bull turned out to be much better than my expectation!!\nIt is a cool place to hangout, the concept is definitely worth checking out...\nThe decor and ambiance is really creative and cool.. Good food good drinks and real friendly staff. It is a nice place when you want a change in your environment and chill and let go of all the worries!\nWeekends here are fun...'), ('Rated 5.0', 'RATED\n  I like this place because of the whole ambiance which is so different and theme based.\nAmbiance is freaking amazing.. When you see the prices going up and down its nice and fun and keeps the excitement level up.\n\nHad hell good of a time here.\nWill visit again.'), ('Rated 5.0', "RATED\n  First time experience in a Bar exchange. Very cordial and friendly reception. They have an app based order for drinks where you can see the prices going up and down like the stock exchange. Food service is offline. We ordered non veg platter,murgh tikka (must try) comes in a unique metal box,fried fish in bread crumbs. In drinks Bud draught beer and whiskies (teacher's, black and white,black dog). If you choose wisely it won't be a pocket pinch. A must visit for a change and enjoy the musical ambience."), ('Rated 3.0', "RATED\n  It's a good place to hangout with friends and colleagues. The plus point being that it stays open till 1 even on weekdays unlike most Bangalore places. They have a foosball table to chill as well\n\nThe downside being that food isn't very great. Nachos were disappointing. Served with Doritos with some mayo and cabbage.\n\nVeg food platter was disappointing as well. Served pineapple, fried baby corns, paneer and har bhare kabab. Paneer was the only good thing out of the four.\n\nTried paneer masala pizza next. This was decent to have.\n\nAloo sandwich with potato wedges was okay too.\n\nFriends ordered Chicken ghost and tandoori chicken but were disappointed with both"), ('Rated 5.0', 'RATED\n  It was a totally amazing experience!!\nDrinks made our day and the food was awesome and the interior and everything is quite as expectations..\nActually come to think about it, the ambiance and theme made our weekend.\nService too was good.\nI liked the concept a lot.'), ('Rated 3.0', "RATED\n  Good place if you want to booze. Okayish food. Better to order snacks, don't go for main course!\nDj and ambience is okay. Can go on a Friday night!"), ('Rated 5.0', 'RATED\n  Went to Tipsy bull with my friend (old review) and we loved this place. We were meeting after a long time and it was a perfect hangout place. Liked the Innovative concept like a stock exchange. Drinks were good and the vegetarian food too!\nWill surely recommend a visit once.'), ('Rated 4.0', 'RATED\n  The place is really trendy and happening!\nThe ambiance is really nice to come with friends and chill! Spectacular ambiance with good food and reasonably priced alcohol!\nIf you want to have a social gathering or party then this place is the best.\nI shall come here again for sure..'), ('Rated 5.0', 'RATED\n  It was a totally amazing experience!!\nDrinks made our day and the food was awesome and the interior and everything is quite as expectations..\nActually come to think about it, the ambiance and theme made our weekend.\nService too was good.\nI liked the concept a lot.'), ('Rated 3.0', "RATED\n  Good place if you want to booze. Okayish food. Better to order snacks, don't go for main course!\nDj and ambience is okay. Can go on a Friday night!"), ('Rated 5.0', 'RATED\n  Went to Tipsy bull with my friend (old review) and we loved this place. We were meeting after a long time and it was a perfect hangout place. Liked the Innovative concept like a stock exchange. Drinks were good and the vegetarian food too!\nWill surely recommend a visit once.'), ('Rated 4.0', 'RATED\n  The place is really trendy and happening!\nThe ambiance is really nice to come with friends and chill! Spectacular ambiance with good food and reasonably priced alcohol!\nIf you want to have a social gathering or party then this place is the best.\nI shall come here again for sure..'), ('Rated 5.0', 'RATED\n  It was a totally amazing experience!!\nDrinks made our day and the food was awesome and the interior and everything is quite as expectations..\nActually come to think about it, the ambiance and theme made our weekend.\nService too was good.\nI liked the concept a lot.'), ('Rated 3.0', "RATED\n  Good place if you want to booze. Okayish food. Better to order snacks, don't go for main course!\nDj and ambience is okay. Can go on a Friday night!"), ('Rated 5.0', 'RATED\n  Went to Tipsy bull with my friend (old review) and we loved this place. We were meeting after a long time and it was a perfect hangout place. Liked the Innovative concept like a stock exchange. Drinks were good and the vegetarian food too!\nWill surely recommend a visit once.'), ('Rated 4.0', 'RATED\n  The place is really trendy and happening!\nThe ambiance is really nice to come with friends and chill! Spectacular ambiance with good food and reasonably priced alcohol!\nIf you want to have a social gathering or party then this place is the best.\nI shall come here again for sure..'), ('Rated 4.0', 'RATED\n  Good place to hangout if youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92re working person and you have night shift to cover? ambiance was good they had good crowd on weekdays too! Loved the food and they have all varieties of alcohol! ThatÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s the best part! Loved everything here! ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s is kinda expensive side but worth giving a shot! Cheers to the team.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
Was in great need of food, so glad Midnight Hunger Solutions 24/7 was available. Their price range is very budget friendly. The food was delicious (could cut back a little on the oil). Won't mind ordering from them again."), ('Rated 2.0', 'RATED\n  Coke was not chilled'), ('Rated 1.0', 'RATED\n  Quality not good. over priced and less quantity.\n\nnot at all recommended to order in this restaurant'), ('Rated 1.0', 'RATED\n  very bad food\nchicken Was not good i never had wrost money'), ('Rated 1.0', 'RATED\n  not yet get my order still.. no proper respond'), ('Rated 1.0', 'RATED\n  we ordered naan bt we received paratha'), ('Rated 3.0', 'RATED\n  not on time my first order...!!'), ('Rated 5.0', 'RATED\n  Good service received on time'), ('Rated 5.0', 'RATED\n  Awesome food delivered on time'), ('Rated 1.0', 'RATED\n  Just go to sleep than ordering from this place .. the most horrible food IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve ever tasted ...midnight horror'), ('Rated 1.0', 'RATED\n  Pathetic food! Delivery delayed.'), ('Rated 3.0', 'RATED\n  someone items missing but ill be paying the money'), ('Rated 4.0', 'RATED\n  very nice'), ('Rated 5.0', 'RATED\n  wow good improvement 2 month back I ordered food from u, Food tastes was not up the mark, but yesterday I ordered was unbelievable such a good tasty food u have delivered, maintain the same taste I will order today again an again'), ('Rated 4.0', 'RATED\n  Superb service at night and they delivered yummy biryani I loved it.\nDelivery was on time\nGreat food\nWild range food dishes\nOn time delivery'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  terrible food. undercooked. chicken was stale.'), ('Rated 1.0', 'RATED\n  food is nothing much'), ('Rated 1.0', 'RATED\n  Worst service ever !! Food is as it is... Worst part is\nTook 2 hours to delivery products. I ordered somethingelse and got something. 100 rupees delivery charge'), ('Rated 1.0', "RATED\n  I swear you guys should shut down the place. We ordered rice rotis and rolls. You never delivered all the items. After getting whatever you sent we tried eating it, but couldn't. The worst i have had in my night shifts past many years. Highlight of the order is that even the dog didn't eat the biryani because it was that salty!! I didn't even want to give 1 out of 5. You people deserve some negative rating."), ('Rated 1.0', 'RATED\n  Pathetic food. Should stop making biryani. Had ordered mutton biryani with couple of friends and what we got was rubbery undercooked meat with taste less salty biryani rice. Not worth it for the price we paid.'), ('Rated 1.0', 'RATED\n  Delivery took 2 hours, they missed 3 items and the food wasnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t even decent. The chicken boneless biryani (in the picture) was not edible, had to throw it all away. The bone was actually stripped off of a cooked piece and thrown into the rice which was anything but a biryani. Lesson learnt.'), ('Rated 1.0', 'RATED\n  This place is as bad as it comes. ! The person on the phone is rude , abusive and arrogant !!!\nThe order was not correct !!! The taste was horrible !!! And the quantity was as bad as it comes. !! In short to all fellow food lovers !!! Please dont make ur evening bad bu ordering from here !!!\nAnd yeah last thing !!!\nBe prepared to be abused by the restaurant !!! These guys are awsome at doing that !!!\nEnjoy your food ( obviously not from here )'), ('Rated 3.0', 'RATED\n  Food was received after 20 min from estimated time'), ('Rated 1.0', 'RATED\n  Delay'), ('Rated 1.0', 'RATED\n  The number of things that went wrong with my order is remarkable.\n\n1) The delivery took well over an hour.\n2) The delivery guy insisted on turning me into his Google Maps Assistant. "Sir, please stay on the line and guide me through every turn. No, sir. I don\'t have smartphone with Whatsapp that you can send me your location through."\n3) They charge me 260 bucks for a Chilly chicken with "extra gravy" as a customization. What they give me is some half-heartedly batter fried chicken, with... an oily Indian gravy served in a separate container. Slow clap...\n4) Food is just short of unpalatable. Even when you\'re starving.\n\nOverall, these guys are probably the bottom feeders when it comes to this segment. That they manage to survive despite such a poor overall rating and a string of criticisms is because there aren\'t too many other options this late into the night.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.5', "RATED\n  Last night was the best Friday till now for me. Had my husbands unexpected colleagues dropping in by 2am and all it was for me was shock to prepare food again.\nI ordered from them and the food came in within an hour fifteen minutes and we stay near New Bel road.\nIt was like these reality shows the survivor series ?\nBut thank you so much for the support.\nI still can't get over the excitement of seeing some good food at that point of time.\nThanks"), ('Rated 4.0', "RATED\n  The biryani I ordered was good but a little spicy. Can't really expect too much .?\nEven though it was spicy it tasted really yum. Ordered again the appreciating part was that the manager reduced the delivery charge for the second time.\n\nThank you for your service"), ('Rated 1.0', "RATED\n  Ordered noodles last night. Pathetic taste, did not even eat. Had asked for schezwan sauce along with it but these guys gave some chicken gravy that added pathetic cherry on the top. Won't even think of ordering next time."), ('Rated 1.0', 'RATED\n  One of the worst restaurants I had ever came across..pathetic food... Hopeless service... And the most important thing u call then 10 times but there is nobody to atleast pick up the call.. What a shame'), ('Rated 1.0', 'RATED\n  THIS WAS SOOOO BAD THAT I HAD TO WRITE MY FIRST REVIEW!\nOrdered at 11:30 pm, received at 3:30 am. The items and the bill had 1 item in common out of 4. Worst online food ordering experience ever. \nThe food was inedible (I had to throw away 75% of it) and pretty expensive.'), ('Rated 4.0', 'RATED\n  Good food, lovely enough for a late night meal. Bit spicy but totally soul food at 3am in the night! Delivery guy was very decent and without any attitude.\n\nThank you!!'), ('Rated 5.0', 'RATED\n  The food was really great the the delivery was also awesome i would like you guys to try the food you will love it . I loved the food non was great'), ('Rated 1.0', 'RATED\n  A long wait (more than 1 hour) and empty tummy can either kill you or can frustrate you to the core. If you really want this feeling then you came at the right place. I called them a lot of times and they confirmed the order at 1:28AM and said delivery boy is on its way. After that no body was picking my call though I have given 1 rating because the guy had a polite tone in his voice and I believe giving 0 is not good as everybody needs some motivation :P .. Yeah I finally got the number at 2:54 AM ... and the order arrived at 3:23AM ... I was charged 430 bucks for 2 egg rolls and 10 cigarettes and delivery boy gave no bill. What a pathetic service. You guys are not worth of even 1 rating'), ('Rated 4.0', "RATED\n  This is the mutton biryani just now I received, quite good thanks midnight hunger, even I asked for desserts but executive told they don't have, please add on some dessert items in ur menu list it will be great,"), ('Rated 4.5', 'RATED\n  Amazing service thank u so much midnight hunger solution u people life saver,I thought my party would end up soon one of my friends suggested ur restaurant to order food from u guys ,u have improved a lot in deliveries.\nI could like to rate ur service,\nFood QUALITY 4.5*\nDELIVERY TIME 5*\nDELIVERY PERSON 4*\nDELIVERY WAS REALLY QUICK BUT LAST TIME MY FRIENDS ORDER BUT IT WAS DELAYED ,BUT THIS TIMES QUICK SERVICE THANKS FOR DELIVERING FOOD AT MIDNIGHT'), ('Rated 4.0', 'RATED\n  Good food, lovely enough for a late night meal. Bit spicy but totally soul food at 3am in the night! Delivery guy was very decent and without any attitude.\n\nThank you!!'), ('Rated 5.0', 'RATED\n  The food was really great the the delivery was also awesome i would like you guys to try the food you will love it . I loved the food non was great'), ('Rated 1.0', 'RATED\n  A long wait (more than 1 hour) and empty tummy can either kill you or can frustrate you to the core. If you really want this feeling then you came at the right place. I called them a lot of times and they confirmed the order at 1:28AM and said delivery boy is on its way. After that no body was picking my call though I have given 1 rating because the guy had a polite tone in his voice and I believe giving 0 is not good as everybody needs some motivation :P .. Yeah I finally got the number at 2:54 AM ... and the order arrived at 3:23AM ... I was charged 430 bucks for 2 egg rolls and 10 cigarettes and delivery boy gave no bill. What a pathetic service. You guys are not worth of even 1 rating'), ('Rated 4.0', "RATED\n  This is the mutton biryani just now I received, quite good thanks midnight hunger, even I asked for desserts but executive told they don't have, please add on some dessert items in ur menu list it will be great,"), ('Rated 4.5', 'RATED\n  Amazing service thank u so much midnight hunger solution u people life saver,I thought my party would end up soon one of my friends suggested ur restaurant to order food from u guys ,u have improved a lot in deliveries.\nI could like to rate ur service,\nFood QUALITY 4.5*\nDELIVERY TIME 5*\nDELIVERY PERSON 4*\nDELIVERY WAS REALLY QUICK BUT LAST TIME MY FRIENDS ORDER BUT IT WAS DELAYED ,BUT THIS TIMES QUICK SERVICE THANKS FOR DELIVERING FOOD AT MIDNIGHT'), ('Rated 4.0', 'RATED\n  Good food, lovely enough for a late night meal. Bit spicy but totally soul food at 3am in the night! Delivery guy was very decent and without any attitude.\n\nThank you!!'), ('Rated 5.0', 'RATED\n  The food was really great the the delivery was also awesome i would like you guys to try the food you will love it . I loved the food non was great'), ('Rated 1.0', 'RATED\n  A long wait (more than 1 hour) and empty tummy can either kill you or can frustrate you to the core. If you really want this feeling then you came at the right place. I called them a lot of times and they confirmed the order at 1:28AM and said delivery boy is on its way. After that no body was picking my call though I have given 1 rating because the guy had a polite tone in his voice and I believe giving 0 is not good as everybody needs some motivation :P .. Yeah I finally got the number at 2:54 AM ... and the order arrived at 3:23AM ... I was charged 430 bucks for 2 egg rolls and 10 cigarettes and delivery boy gave no bill. What a pathetic service. You guys are not worth of even 1 rating'), ('Rated 4.0', "RATED\n  This is the mutton biryani just now I received, quite good thanks midnight hunger, even I asked for desserts but executive told they don't have, please add on some dessert items in ur menu list it will be great,"), ('Rated 4.5', 'RATED\n  Amazing service thank u so much midnight hunger solution u people life saver,I thought my party would end up soon one of my friends suggested ur restaurant to order food from u guys ,u have improved a lot in deliveries.\nI could like to rate ur service,\nFood QUALITY 4.5*\nDELIVERY TIME 5*\nDELIVERY PERSON 4*\nDELIVERY WAS REALLY QUICK BUT LAST TIME MY FRIENDS ORDER BUT IT WAS DELAYED ,BUT THIS TIMES QUICK SERVICE THANKS FOR DELIVERING FOOD AT MIDNIGHT'), ('Rated 4.0', 'RATED\n  Good food, lovely enough for a late night meal. Bit spicy but totally soul food at 3am in the night! Delivery guy was very decent and without any attitude.\n\nThank you!!'), ('Rated 5.0', 'RATED\n  The food was really great the the delivery was also awesome i would like you guys to try the food you will love it . I loved the food non was great'), ('Rated 1.0', 'RATED\n  A long wait (more than 1 hour) and empty tummy can either kill you or can frustrate you to the core. If you really want this feeling then you came at the right place. I called them a lot of times and they confirmed the order at 1:28AM and said delivery boy is on its way. After that no body was picking my call though I have given 1 rating because the guy had a polite tone in his voice and I believe giving 0 is not good as everybody needs some motivation :P .. Yeah I finally got the number at 2:54 AM ... and the order arrived at 3:23AM ... I was charged 430 bucks for 2 egg rolls and 10 cigarettes and delivery boy gave no bill. What a pathetic service. You guys are not worth of even 1 rating'), ('Rated 4.0', "RATED\n  This is the mutton biryani just now I received, quite good thanks midnight hunger, even I asked for desserts but executive told they don't have, please add on some dessert items in ur menu list it will be great,"), ('Rated 4.5', 'RATED\n  Amazing service thank u so much midnight hunger solution u people life saver,I thought my party would end up soon one of my friends suggested ur restaurant to order food from u guys ,u have improved a lot in deliveries.\nI could like to rate ur service,\nFood QUALITY 4.5*\nDELIVERY TIME 5*\nDELIVERY PERSON 4*\nDELIVERY WAS REALLY QUICK BUT LAST TIME MY FRIENDS ORDER BUT IT WAS DELAYED ,BUT THIS TIMES QUICK SERVICE THANKS FOR DELIVERING FOOD AT MIDNIGHT'), ('Rated 4.0', 'RATED\n  Good food, lovely enough for a late night meal. Bit spicy but totally soul food at 3am in the night! Delivery guy was very decent and without any attitude.\n\nThank you!!'), ('Rated 5.0', 'RATED\n  The food was really great the the delivery was also awesome i would like you guys to try the food you will love it . I loved the food non was great'), ('Rated 1.0', 'RATED\n  A long wait (more than 1 hour) and empty tummy can either kill you or can frustrate you to the core. If you really want this feeling then you came at the right place. I called them a lot of times and they confirmed the order at 1:28AM and said delivery boy is on its way. After that no body was picking my call though I have given 1 rating because the guy had a polite tone in his voice and I believe giving 0 is not good as everybody needs some motivation :P .. Yeah I finally got the number at 2:54 AM ... and the order arrived at 3:23AM ... I was charged 430 bucks for 2 egg rolls and 10 cigarettes and delivery boy gave no bill. What a pathetic service. You guys are not worth of even 1 rating'), ('Rated 4.0', "RATED\n  This is the mutton biryani just now I received, quite good thanks midnight hunger, even I asked for desserts but executive told they don't have, please add on some dessert items in ur menu list it will be great,"), ('Rated 4.5', 'RATED\n  Amazing service thank u so much midnight hunger solution u people life saver,I thought my party would end up soon one of my friends suggested ur restaurant to order food from u guys ,u have improved a lot in deliveries.\nI could like to rate ur service,\nFood QUALITY 4.5*\nDELIVERY TIME 5*\nDELIVERY PERSON 4*\nDELIVERY WAS REALLY QUICK BUT LAST TIME MY FRIENDS ORDER BUT IT WAS DELAYED ,BUT THIS TIMES QUICK SERVICE THANKS FOR DELIVERING FOOD AT MIDNIGHT'), ('Rated 4.0', 'RATED\n  Good food, lovely enough for a late night meal. Bit spicy but totally soul food at 3am in the night! Delivery guy was very decent and without any attitude.\n\nThank you!!'), ('Rated 5.0', 'RATED\n  The food was really great the the delivery was also awesome i would like you guys to try the food you will love it . I loved the food non was great'), ('Rated 1.0', 'RATED\n  A long wait (more than 1 hour) and empty tummy can either kill you or can frustrate you to the core. If you really want this feeling then you came at the right place. I called them a lot of times and they confirmed the order at 1:28AM and said delivery boy is on its way. After that no body was picking my call though I have given 1 rating because the guy had a polite tone in his voice and I believe giving 0 is not good as everybody needs some motivation :P .. Yeah I finally got the number at 2:54 AM ... and the order arrived at 3:23AM ... I was charged 430 bucks for 2 egg rolls and 10 cigarettes and delivery boy gave no bill. What a pathetic service. You guys are not worth of even 1 rating'), ('Rated 4.0', "RATED\n  This is the mutton biryani just now I received, quite good thanks midnight hunger, even I asked for desserts but executive told they don't have, please add on some dessert items in ur menu list it will be great,"), ('Rated 4.5', 'RATED\n  Amazing service thank u so much midnight hunger solution u people life saver,I thought my party would end up soon one of my friends suggested ur restaurant to order food from u guys ,u have improved a lot in deliveries.\nI could like to rate ur service,\nFood QUALITY 4.5*\nDELIVERY TIME 5*\nDELIVERY PERSON 4*\nDELIVERY WAS REALLY QUICK BUT LAST TIME MY FRIENDS ORDER BUT IT WAS DELAYED ,BUT THIS TIMES QUICK SERVICE THANKS FOR DELIVERING FOOD AT MIDNIGHT'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.5', 'RATED\n  Good service , on time delivery good quality food, yesterday i have ordered chicken Biryani the tast really good enjoyed a lot ,chicken gravy was little spicy,thats fine ,delivery guy was spoke very politely definitely i will recommend my friends to order food from ur resturant good work thanks for food delivering at this time'), ('Rated 1.0', 'RATED\n  Ordered 3 chicken rolls but it was filled with only bones.they delivered after nearly 2hrs after making 20 calls to them.\nI have uploaded the pic.\nHorrible experience.Please avoid ordering from this restaurant.'), ('Rated 5.0', "RATED\n  Love the food and amazing timing, I would love to kiss the cook. At this time of the night you are Heroes, Champions who are at rescue to many.Kudos to you'll keep up the good work."), ('Rated 1.0', "RATED\n  Guys if you are hungry please don't order food from here. I placed my order at 2:45 am and my food reached at 5:00 am. And I ordered mutton roll and what I got was some onion and two small piece of mutton wrapped In a chappathi. I'm not at all satisfied with the delivery and the quality of food"), ('Rated 4.5', 'RATED\n  Ordered food on a saturday night and it is amazing saw a few reviews and i am happy we orderer very happy there are good thank you u the packing was amazing too'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 4.0', "RATED\n  Though there is a service in Delhi that home delivers food at night I was really very happy with this restaurants service, even in the rain they never said no they delivered food late but they did.\nThis experience was really nice as in Delhi they up front say no without even trying.\nHope to order from you'll soon again.\nFood : 4/5\nService: 4/5\nSo over all I rate you'll a four."), ('Rated 1.0', "RATED\n  Absolute loose motion material. Friend ordered since everything was closed. \nI think they don't know how to cook food and use stale raw materials which contribute to food poisoning.\n\nStay hungry rather than end up with loose motion."), ('Rated 1.0', 'RATED\n  The food delivered is pathetic, tasteless and uncooked at times. Gave this place 2 chances... But there was no difference. If you are really hungry in the night I would suggest you to eat somewhere else.... Even a roadside Chinese guy is better than this place. Please avoid this place!'), ('Rated 1.0', 'RATED\n  Never order from this place specially vegetarians, i ordered for paneer butter masala taste was very bad and i found chicken piece in it. Really this place is shit and serves very bad food. I will never order food from this place again.'), ('Rated 1.0', 'RATED\n  Midnight Hunger, my ass! 45 - 50 mins delivery time took almost 1 hour 30 mins. To add to that, "boneless" butter chicken was only leftover pieces with bones. Inefficient bunch of people who take on more than they can deliver. If you\'re hungry past midnight and have no other option, please sleep on an empty stomach and save yourself the stress of having an experience with their shitty service.\nTheir business model thrives only on customers having limited options late night after all the watering holes shut down. I would definitely not recommend them to anyone and rather suggest eating the average food at Empire if it\'s an option, or trying out the other "midnight" food players.'), ('Rated 1.0', 'RATED\n  100 % Assured that food arrives late though efforts are highly appreciated but please you burnt a hole in my pocket for your so called midnight service.\n\nand lets come to the food, trust me my culinary  skills are far better given the fact i suck at cooking .\n\nThis is what they serve in platter what they mention in menu as chicken kababs. :P'), ('Rated 5.0', 'RATED\n  Brilliant service never expected with some low reviews however tried out as no one agreed to deliver at 4 but these guys did all the best love you guys you have a fan now'), ('Rated 1.0', "RATED\n  If there was a rating below 1.0 , i would give that . simply ZEROO.. This is such a cheap third rated restaurant you'll ever see. DONT GO TO THIS PLACE EVER. Have ordered a food online and still it did not reach me for more than 3 hrs wait time. First they said order will take 1hr to reach , then they're saying there is no delivery boy to deliver the food.and the person who attended call claims i have not taken your order so iam not responsible so please cancel the order. Is this a way to talk ?? Foodpanda has to cancel these kinds of irresponsible junk restaurants. NEVER RECOMMEND THIS TO ANY1!! NO SECOND THOUGHTS!!"), ('Rated 1.0', 'RATED\n  a worst service ever. \nordered for 2 mutton biryani and a pepper chicken.\nordered food at 10.40 , it reached me at 12.40. \n\nmoreover they missed one mutton biryani and they didnt even say sorry for that.\nwas starving from hunger and this happens. hope no one orders from this place. may be they are providing food late nights but we are paying for it and more over they were not sorry for wat happened. they were asking me to wait for another half hour to deliver the other biryani.\n\ni asked the delivery boy to take back the food. \nfrom here on i would not order the food from this place.'), ('Rated 1.0', "RATED\n  I would never order from this restaurant again. The delivery was late and the delivery boy didn't have change...he rushed for an other delivery came back late night,woke us late night for change."), ('Rated 1.0', 'RATED\n  100 % Assured that food arrives late though efforts are highly appreciated but please you burnt a hole in my pocket for your so called midnight service.\n\nand lets come to the food, trust me my culinary  skills are far better given the fact i suck at cooking .\n\nThis is what they serve in platter what they mention in menu as chicken kababs. :P'), ('Rated 5.0', 'RATED\n  Brilliant service never expected with some low reviews however tried out as no one agreed to deliver at 4 but these guys did all the best love you guys you have a fan now'), ('Rated 1.0', "RATED\n  If there was a rating below 1.0 , i would give that . simply ZEROO.. This is such a cheap third rated restaurant you'll ever see. DONT GO TO THIS PLACE EVER. Have ordered a food online and still it did not reach me for more than 3 hrs wait time. First they said order will take 1hr to reach , then they're saying there is no delivery boy to deliver the food.and the person who attended call claims i have not taken your order so iam not responsible so please cancel the order. Is this a way to talk ?? Foodpanda has to cancel these kinds of irresponsible junk restaurants. NEVER RECOMMEND THIS TO ANY1!! NO SECOND THOUGHTS!!"), ('Rated 1.0', 'RATED\n  a worst service ever. \nordered for 2 mutton biryani and a pepper chicken.\nordered food at 10.40 , it reached me at 12.40. \n\nmoreover they missed one mutton biryani and they didnt even say sorry for that.\nwas starving from hunger and this happens. hope no one orders from this place. may be they are providing food late nights but we are paying for it and more over they were not sorry for wat happened. they were asking me to wait for another half hour to deliver the other biryani.\n\ni asked the delivery boy to take back the food. \nfrom here on i would not order the food from this place.'), ('Rated 1.0', "RATED\n  I would never order from this restaurant again. The delivery was late and the delivery boy didn't have change...he rushed for an other delivery came back late night,woke us late night for change."), ('Rated 1.0', 'RATED\n  100 % Assured that food arrives late though efforts are highly appreciated but please you burnt a hole in my pocket for your so called midnight service.\n\nand lets come to the food, trust me my culinary  skills are far better given the fact i suck at cooking .\n\nThis is what they serve in platter what they mention in menu as chicken kababs. :P'), ('Rated 5.0', 'RATED\n  Brilliant service never expected with some low reviews however tried out as no one agreed to deliver at 4 but these guys did all the best love you guys you have a fan now'), ('Rated 1.0', "RATED\n  If there was a rating below 1.0 , i would give that . simply ZEROO.. This is such a cheap third rated restaurant you'll ever see. DONT GO TO THIS PLACE EVER. Have ordered a food online and still it did not reach me for more than 3 hrs wait time. First they said order will take 1hr to reach , then they're saying there is no delivery boy to deliver the food.and the person who attended call claims i have not taken your order so iam not responsible so please cancel the order. Is this a way to talk ?? Foodpanda has to cancel these kinds of irresponsible junk restaurants. NEVER RECOMMEND THIS TO ANY1!! NO SECOND THOUGHTS!!"), ('Rated 1.0', 'RATED\n  a worst service ever. \nordered for 2 mutton biryani and a pepper chicken.\nordered food at 10.40 , it reached me at 12.40. \n\nmoreover they missed one mutton biryani and they didnt even say sorry for that.\nwas starving from hunger and this happens. hope no one orders from this place. may be they are providing food late nights but we are paying for it and more over they were not sorry for wat happened. they were asking me to wait for another half hour to deliver the other biryani.\n\ni asked the delivery boy to take back the food. \nfrom here on i would not order the food from this place.'), ('Rated 1.0', "RATED\n  I would never order from this restaurant again. The delivery was late and the delivery boy didn't have change...he rushed for an other delivery came back late night,woke us late night for change."), ('Rated 1.0', 'RATED\n  100 % Assured that food arrives late though efforts are highly appreciated but please you burnt a hole in my pocket for your so called midnight service.\n\nand lets come to the food, trust me my culinary  skills are far better given the fact i suck at cooking .\n\nThis is what they serve in platter what they mention in menu as chicken kababs. :P'), ('Rated 5.0', 'RATED\n  Brilliant service never expected with some low reviews however tried out as no one agreed to deliver at 4 but these guys did all the best love you guys you have a fan now'), ('Rated 1.0', "RATED\n  If there was a rating below 1.0 , i would give that . simply ZEROO.. This is such a cheap third rated restaurant you'll ever see. DONT GO TO THIS PLACE EVER. Have ordered a food online and still it did not reach me for more than 3 hrs wait time. First they said order will take 1hr to reach , then they're saying there is no delivery boy to deliver the food.and the person who attended call claims i have not taken your order so iam not responsible so please cancel the order. Is this a way to talk ?? Foodpanda has to cancel these kinds of irresponsible junk restaurants. NEVER RECOMMEND THIS TO ANY1!! NO SECOND THOUGHTS!!"), ('Rated 1.0', 'RATED\n  a worst service ever. \nordered for 2 mutton biryani and a pepper chicken.\nordered food at 10.40 , it reached me at 12.40. \n\nmoreover they missed one mutton biryani and they didnt even say sorry for that.\nwas starving from hunger and this happens. hope no one orders from this place. may be they are providing food late nights but we are paying for it and more over they were not sorry for wat happened. they were asking me to wait for another half hour to deliver the other biryani.\n\ni asked the delivery boy to take back the food. \nfrom here on i would not order the food from this place.'), ('Rated 1.0', "RATED\n  I would never order from this restaurant again. The delivery was late and the delivery boy didn't have change...he rushed for an other delivery came back late night,woke us late night for change."), ('Rated 1.0', 'RATED\n  100 % Assured that food arrives late though efforts are highly appreciated but please you burnt a hole in my pocket for your so called midnight service.\n\nand lets come to the food, trust me my culinary  skills are far better given the fact i suck at cooking .\n\nThis is what they serve in platter what they mention in menu as chicken kababs. :P'), ('Rated 5.0', 'RATED\n  Brilliant service never expected with some low reviews however tried out as no one agreed to deliver at 4 but these guys did all the best love you guys you have a fan now'), ('Rated 1.0', "RATED\n  If there was a rating below 1.0 , i would give that . simply ZEROO.. This is such a cheap third rated restaurant you'll ever see. DONT GO TO THIS PLACE EVER. Have ordered a food online and still it did not reach me for more than 3 hrs wait time. First they said order will take 1hr to reach , then they're saying there is no delivery boy to deliver the food.and the person who attended call claims i have not taken your order so iam not responsible so please cancel the order. Is this a way to talk ?? Foodpanda has to cancel these kinds of irresponsible junk restaurants. NEVER RECOMMEND THIS TO ANY1!! NO SECOND THOUGHTS!!"), ('Rated 1.0', 'RATED\n  a worst service ever. \nordered for 2 mutton biryani and a pepper chicken.\nordered food at 10.40 , it reached me at 12.40. \n\nmoreover they missed one mutton biryani and they didnt even say sorry for that.\nwas starving from hunger and this happens. hope no one orders from this place. may be they are providing food late nights but we are paying for it and more over they were not sorry for wat happened. they were asking me to wait for another half hour to deliver the other biryani.\n\ni asked the delivery boy to take back the food. \nfrom here on i would not order the food from this place.'), ('Rated 1.0', "RATED\n  I would never order from this restaurant again. The delivery was late and the delivery boy didn't have change...he rushed for an other delivery came back late night,woke us late night for change."), ('Rated 2.0', "RATED\n  I was so excited to find this place on Zomato to satiate my midnight hunger cravings. I decided to keep the order plain and simple with five chicken rolls for me and my friends. Unfortunately the rolls took over an hour and a half to reach us in Koramangla, which is not too far from indiranagar especially at about 1.30am.\n\nThe rolls when they FINALLY got to us were cold and soggy and I don't remember biting into even one piece of chicken.\n\nI was very disappointed with Midnight Hunger Solutions, but I do admire the fact that they are there and trying to make an effort. To the management.. Your concept is really good and I think it will work really well. However, a little attention to the execution and quality of food will go a long way."), ('Rated 1.0', 'RATED\n  Late delivery, and crappy food... Please dont order from this... Its better if you go to bed hungry.. Total waste of money and the prices are as you know really high..'), ('Rated 1.0', "RATED\n  Horrible service... would never ever order from this place again... it's been 2.5 hours already and the food hasn't been delivered yet.. if u wish to die starving waiting for food this would be the best place.. just one word for them pathetic.."), ('Rated 1.5', "RATED\n  If you don't mind your food being delivered two hours late and don't mind sad food, then this is the place to order from. Ordered an omlette, paneer roll which amounted to Rs 440/- and used the online ordering feature. Also ordered soft drinks to which the delivery boy told he will get it in 10 minutes, but never turned up. They really need to improve."), ('Rated 1.0', "RATED\n  Please don't order, they don't deliver even after an hour after placing the order. Its a fraud. They had called close to 90 minutes after placing the order."), ('Rated 2.0', "RATED\n  I was so excited to find this place on Zomato to satiate my midnight hunger cravings. I decided to keep the order plain and simple with five chicken rolls for me and my friends. Unfortunately the rolls took over an hour and a half to reach us in Koramangla, which is not too far from indiranagar especially at about 1.30am.\n\nThe rolls when they FINALLY got to us were cold and soggy and I don't remember biting into even one piece of chicken.\n\nI was very disappointed with Midnight Hunger Solutions, but I do admire the fact that they are there and trying to make an effort. To the management.. Your concept is really good and I think it will work really well. However, a little attention to the execution and quality of food will go a long way."), ('Rated 1.0', 'RATED\n  Late delivery, and crappy food... Please dont order from this... Its better if you go to bed hungry.. Total waste of money and the prices are as you know really high..'), ('Rated 1.0', "RATED\n  Horrible service... would never ever order from this place again... it's been 2.5 hours already and the food hasn't been delivered yet.. if u wish to die starving waiting for food this would be the best place.. just one word for them pathetic.."), ('Rated 1.5', "RATED\n  If you don't mind your food being delivered two hours late and don't mind sad food, then this is the place to order from. Ordered an omlette, paneer roll which amounted to Rs 440/- and used the online ordering feature. Also ordered soft drinks to which the delivery boy told he will get it in 10 minutes, but never turned up. They really need to improve."), ('Rated 1.0', "RATED\n  Please don't order, they don't deliver even after an hour after placing the order. Its a fraud. They had called close to 90 minutes after placing the order."), ('Rated 2.0', "RATED\n  I was so excited to find this place on Zomato to satiate my midnight hunger cravings. I decided to keep the order plain and simple with five chicken rolls for me and my friends. Unfortunately the rolls took over an hour and a half to reach us in Koramangla, which is not too far from indiranagar especially at about 1.30am.\n\nThe rolls when they FINALLY got to us were cold and soggy and I don't remember biting into even one piece of chicken.\n\nI was very disappointed with Midnight Hunger Solutions, but I do admire the fact that they are there and trying to make an effort. To the management.. Your concept is really good and I think it will work really well. However, a little attention to the execution and quality of food will go a long way."), ('Rated 1.0', 'RATED\n  Late delivery, and crappy food... Please dont order from this... Its better if you go to bed hungry.. Total waste of money and the prices are as you know really high..'), ('Rated 1.0', "RATED\n  Horrible service... would never ever order from this place again... it's been 2.5 hours already and the food hasn't been delivered yet.. if u wish to die starving waiting for food this would be the best place.. just one word for them pathetic.."), ('Rated 1.5', "RATED\n  If you don't mind your food being delivered two hours late and don't mind sad food, then this is the place to order from. Ordered an omlette, paneer roll which amounted to Rs 440/- and used the online ordering feature. Also ordered soft drinks to which the delivery boy told he will get it in 10 minutes, but never turned up. They really need to improve."), ('Rated 1.0', "RATED\n  Please don't order, they don't deliver even after an hour after placing the order. Its a fraud. They had called close to 90 minutes after placing the order."), ('Rated 2.0', "RATED\n  I was so excited to find this place on Zomato to satiate my midnight hunger cravings. I decided to keep the order plain and simple with five chicken rolls for me and my friends. Unfortunately the rolls took over an hour and a half to reach us in Koramangla, which is not too far from indiranagar especially at about 1.30am.\n\nThe rolls when they FINALLY got to us were cold and soggy and I don't remember biting into even one piece of chicken.\n\nI was very disappointed with Midnight Hunger Solutions, but I do admire the fact that they are there and trying to make an effort. To the management.. Your concept is really good and I think it will work really well. However, a little attention to the execution and quality of food will go a long way."), ('Rated 1.0', 'RATED\n  Late delivery, and crappy food... Please dont order from this... Its better if you go to bed hungry.. Total waste of money and the prices are as you know really high..'), ('Rated 1.0', "RATED\n  Horrible service... would never ever order from this place again... it's been 2.5 hours already and the food hasn't been delivered yet.. if u wish to die starving waiting for food this would be the best place.. just one word for them pathetic.."), ('Rated 1.5', "RATED\n  If you don't mind your food being delivered two hours late and don't mind sad food, then this is the place to order from. Ordered an omlette, paneer roll which amounted to Rs 440/- and used the online ordering feature. Also ordered soft drinks to which the delivery boy told he will get it in 10 minutes, but never turned up. They really need to improve."), ('Rated 1.0', "RATED\n  Please don't order, they don't deliver even after an hour after placing the order. Its a fraud. They had called close to 90 minutes after placing the order."), ('Rated 2.0', "RATED\n  I was so excited to find this place on Zomato to satiate my midnight hunger cravings. I decided to keep the order plain and simple with five chicken rolls for me and my friends. Unfortunately the rolls took over an hour and a half to reach us in Koramangla, which is not too far from indiranagar especially at about 1.30am.\n\nThe rolls when they FINALLY got to us were cold and soggy and I don't remember biting into even one piece of chicken.\n\nI was very disappointed with Midnight Hunger Solutions, but I do admire the fact that they are there and trying to make an effort. To the management.. Your concept is really good and I think it will work really well. However, a little attention to the execution and quality of food will go a long way."), ('Rated 1.0', 'RATED\n  Late delivery, and crappy food... Please dont order from this... Its better if you go to bed hungry.. Total waste of money and the prices are as you know really high..'), ('Rated 1.0', "RATED\n  Horrible service... would never ever order from this place again... it's been 2.5 hours already and the food hasn't been delivered yet.. if u wish to die starving waiting for food this would be the best place.. just one word for them pathetic.."), ('Rated 1.5', "RATED\n  If you don't mind your food being delivered two hours late and don't mind sad food, then this is the place to order from. Ordered an omlette, paneer roll which amounted to Rs 440/- and used the online ordering feature. Also ordered soft drinks to which the delivery boy told he will get it in 10 minutes, but never turned up. They really need to improve."), ('Rated 1.0', "RATED\n  Please don't order, they don't deliver even after an hour after placing the order. Its a fraud. They had called close to 90 minutes after placing the order."), ('Rated 2.0', "RATED\n  I was so excited to find this place on Zomato to satiate my midnight hunger cravings. I decided to keep the order plain and simple with five chicken rolls for me and my friends. Unfortunately the rolls took over an hour and a half to reach us in Koramangla, which is not too far from indiranagar especially at about 1.30am.\n\nThe rolls when they FINALLY got to us were cold and soggy and I don't remember biting into even one piece of chicken.\n\nI was very disappointed with Midnight Hunger Solutions, but I do admire the fact that they are there and trying to make an effort. To the management.. Your concept is really good and I think it will work really well. However, a little attention to the execution and quality of food will go a long way."), ('Rated 1.0', 'RATED\n  Late delivery, and crappy food... Please dont order from this... Its better if you go to bed hungry.. Total waste of money and the prices are as you know really high..'), ('Rated 1.0', "RATED\n  Horrible service... would never ever order from this place again... it's been 2.5 hours already and the food hasn't been delivered yet.. if u wish to die starving waiting for food this would be the best place.. just one word for them pathetic.."), ('Rated 1.5', "RATED\n  If you don't mind your food being delivered two hours late and don't mind sad food, then this is the place to order from. Ordered an omlette, paneer roll which amounted to Rs 440/- and used the online ordering feature. Also ordered soft drinks to which the delivery boy told he will get it in 10 minutes, but never turned up. They really need to improve."), ('Rated 1.0', "RATED\n  Please don't order, they don't deliver even after an hour after placing the order. Its a fraud. They had called close to 90 minutes after placing the order."), ('Rated 1.0', 'RATED\n  I had to rate it 1 as there is no other lower option available.  Came back home very late night after hours long travel and I was damn hungry , was reluctant to cook or to drive any more for Empire , which is just 5 minutes drive from my house so called up Mid night Hunger by 1:05 a:m , waited for an hour , tried their phone which was busy and fell asleep , by 2:30 a:m received a call from their delivery boyfrom a nearest land mark to my house , after several calls the guy managed to reach my place by 2:50 a:m ,after paying him,the guy ddnt returned my money as he told he dont have any change ( bangalore auto driver excuse, running since ages) , fine , never mind. After all these jazz what I got was a over spiced , taste less, over boiled chiken biriyani and spoiled kababs . They simply serve the shittiest , over priced food , with an added delivery charge of 100 rs. Next time in the same situation I will love stay hungry full night , rather ordering from mid night hunger.'), ('Rated 5.0', "RATED\n  An Amazing place to order from, I rate them 5 because i am really very happy with their services the reason being i got my food delivered in the heavy rains, where as the the close by late night home delivery restaurants refused to deliver 1.5kms from their outlet an in return asked us only to pick it up.\nSorry couldn't review about you'll immediately but i appreciate the fact that your a true example of late night home delivery service.\nI will surely spread in a word about you'll across.\nThank You, Good Luck."), ('Rated 1.0', 'RATED\n  If you want to eat oil, chilli powder and raw uncooked chicken please feel free to throw your money away on this pathetic place... Take my advice... Do not order... Waste of money and waste of time...'), ('Rated 1.5', "RATED\n  Well please improve and widen your delivery zones .. Second time disappointed ! Well can't expect more .. Hope there is help for hungry souls during this ungodly hours"), ('Rated 1.0', 'RATED\n  I had to rate it 1 as there is no other lower option available.  Came back home very late night after hours long travel and I was damn hungry , was reluctant to cook or to drive any more for Empire , which is just 5 minutes drive from my house so called up Mid night Hunger by 1:05 a:m , waited for an hour , tried their phone which was busy and fell asleep , by 2:30 a:m received a call from their delivery boyfrom a nearest land mark to my house , after several calls the guy managed to reach my place by 2:50 a:m ,after paying him,the guy ddnt returned my money as he told he dont have any change ( bangalore auto driver excuse, running since ages) , fine , never mind. After all these jazz what I got was a over spiced , taste less, over boiled chiken biriyani and spoiled kababs . They simply serve the shittiest , over priced food , with an added delivery charge of 100 rs. Next time in the same situation I will love stay hungry full night , rather ordering from mid night hunger.'), ('Rated 5.0', "RATED\n  An Amazing place to order from, I rate them 5 because i am really very happy with their services the reason being i got my food delivered in the heavy rains, where as the the close by late night home delivery restaurants refused to deliver 1.5kms from their outlet an in return asked us only to pick it up.\nSorry couldn't review about you'll immediately but i appreciate the fact that your a true example of late night home delivery service.\nI will surely spread in a word about you'll across.\nThank You, Good Luck."), ('Rated 1.0', 'RATED\n  If you want to eat oil, chilli powder and raw uncooked chicken please feel free to throw your money away on this pathetic place... Take my advice... Do not order... Waste of money and waste of time...'), ('Rated 1.5', "RATED\n  Well please improve and widen your delivery zones .. Second time disappointed ! Well can't expect more .. Hope there is help for hungry souls during this ungodly hours"), ('Rated 1.0', 'RATED\n  I had to rate it 1 as there is no other lower option available.  Came back home very late night after hours long travel and I was damn hungry , was reluctant to cook or to drive any more for Empire , which is just 5 minutes drive from my house so called up Mid night Hunger by 1:05 a:m , waited for an hour , tried their phone which was busy and fell asleep , by 2:30 a:m received a call from their delivery boyfrom a nearest land mark to my house , after several calls the guy managed to reach my place by 2:50 a:m ,after paying him,the guy ddnt returned my money as he told he dont have any change ( bangalore auto driver excuse, running since ages) , fine , never mind. After all these jazz what I got was a over spiced , taste less, over boiled chiken biriyani and spoiled kababs . They simply serve the shittiest , over priced food , with an added delivery charge of 100 rs. Next time in the same situation I will love stay hungry full night , rather ordering from mid night hunger.'), ('Rated 5.0', "RATED\n  An Amazing place to order from, I rate them 5 because i am really very happy with their services the reason being i got my food delivered in the heavy rains, where as the the close by late night home delivery restaurants refused to deliver 1.5kms from their outlet an in return asked us only to pick it up.\nSorry couldn't review about you'll immediately but i appreciate the fact that your a true example of late night home delivery service.\nI will surely spread in a word about you'll across.\nThank You, Good Luck."), ('Rated 1.0', 'RATED\n  If you want to eat oil, chilli powder and raw uncooked chicken please feel free to throw your money away on this pathetic place... Take my advice... Do not order... Waste of money and waste of time...'), ('Rated 1.5', "RATED\n  Well please improve and widen your delivery zones .. Second time disappointed ! Well can't expect more .. Hope there is help for hungry souls during this ungodly hours"), ('Rated 1.0', 'RATED\n  I had to rate it 1 as there is no other lower option available.  Came back home very late night after hours long travel and I was damn hungry , was reluctant to cook or to drive any more for Empire , which is just 5 minutes drive from my house so called up Mid night Hunger by 1:05 a:m , waited for an hour , tried their phone which was busy and fell asleep , by 2:30 a:m received a call from their delivery boyfrom a nearest land mark to my house , after several calls the guy managed to reach my place by 2:50 a:m ,after paying him,the guy ddnt returned my money as he told he dont have any change ( bangalore auto driver excuse, running since ages) , fine , never mind. After all these jazz what I got was a over spiced , taste less, over boiled chiken biriyani and spoiled kababs . They simply serve the shittiest , over priced food , with an added delivery charge of 100 rs. Next time in the same situation I will love stay hungry full night , rather ordering from mid night hunger.'), ('Rated 5.0', "RATED\n  An Amazing place to order from, I rate them 5 because i am really very happy with their services the reason being i got my food delivered in the heavy rains, where as the the close by late night home delivery restaurants refused to deliver 1.5kms from their outlet an in return asked us only to pick it up.\nSorry couldn't review about you'll immediately but i appreciate the fact that your a true example of late night home delivery service.\nI will surely spread in a word about you'll across.\nThank You, Good Luck."), ('Rated 1.0', 'RATED\n  If you want to eat oil, chilli powder and raw uncooked chicken please feel free to throw your money away on this pathetic place... Take my advice... Do not order... Waste of money and waste of time...'), ('Rated 1.5', "RATED\n  Well please improve and widen your delivery zones .. Second time disappointed ! Well can't expect more .. Hope there is help for hungry souls during this ungodly hours"), ('Rated 1.0', "RATED\n  I am giving it 1 star because they delivered me food at night.Rest all experience makes me thing why was I hungry and my luck was so pathetic that I had to order food from them.When I ordered food at 12:30 am they promised it will take 90 mins.After numerous calls to the number and to the delivery guy ,I actually dozed off and you won't believe the food reached at 3:45 am that's intact 3 hrs 15 mins.Thats not at all after the premium they charge for night delivery and extra 100 bugs for delivery,the delivery guy insisted me to come to point to pick up the food.I straight away denied saying I am paying that much money to deliver the food.He bluntly hung up on me.After a lot of struggle food finally reached.If they can't handle this ,why they even started this business.Customers please keep yourselves away from this worst service providers ever I have come across in my life."), ('Rated 1.0', 'RATED\n  Absolutely nonsense and ridicules service and food. Below average food but five star price, they will never deliver the food on time. On top of that 100 rs delivery charge. These guys are looting people who are in need of food after hours. I wish I could go legal against them.'), ('Rated 1.0', "RATED\n  DO NOT ORDER!! I REPEAT DO NOT ORDER EVER!!\nFirst of all i ordered the food through food panda app for chicken briyani boneless and chilly chicken and waited for two hours to get my order!! what they delivered was a spoilt chicken briyani and chinese which hardly had any meat on it just bones and preparation was unhygienic as there was onion skins in and egg shell in it!! how the hell did it even get in there!?? and to top it off they charge way too much for delivery which is 100rs and the total was 460 but since i didn't have change the delivery guy went to get from nearby fuel station but the bas*#$% never returned i gave him 1000rs!!!  i would strongly advise you to never order from here as they clearly are cheating scums! stay away unless you wanna eat rotten crap literally and end up getting hunger problems instead of there goddamned name hunger solutions ...sucks to the core!!"), ('Rated 1.0', 'RATED\n  one of the worst food to order at night. sometimes its good,sometimes its not even edible. there is simply no quality at service. what is the point of providing a midnight outlet like this.'), ('Rated 4.5', 'RATED\n  Ordered this weekend, the service was good and I was informed that the delivery will happen in 1 hr, however it happened in 45 mins way to go guys, all the best.. we will order more'), ('Rated 1.0', "RATED\n  I am giving it 1 star because they delivered me food at night.Rest all experience makes me thing why was I hungry and my luck was so pathetic that I had to order food from them.When I ordered food at 12:30 am they promised it will take 90 mins.After numerous calls to the number and to the delivery guy ,I actually dozed off and you won't believe the food reached at 3:45 am that's intact 3 hrs 15 mins.Thats not at all after the premium they charge for night delivery and extra 100 bugs for delivery,the delivery guy insisted me to come to point to pick up the food.I straight away denied saying I am paying that much money to deliver the food.He bluntly hung up on me.After a lot of struggle food finally reached.If they can't handle this ,why they even started this business.Customers please keep yourselves away from this worst service providers ever I have come across in my life."), ('Rated 1.0', 'RATED\n  Absolutely nonsense and ridicules service and food. Below average food but five star price, they will never deliver the food on time. On top of that 100 rs delivery charge. These guys are looting people who are in need of food after hours. I wish I could go legal against them.'), ('Rated 1.0', "RATED\n  DO NOT ORDER!! I REPEAT DO NOT ORDER EVER!!\nFirst of all i ordered the food through food panda app for chicken briyani boneless and chilly chicken and waited for two hours to get my order!! what they delivered was a spoilt chicken briyani and chinese which hardly had any meat on it just bones and preparation was unhygienic as there was onion skins in and egg shell in it!! how the hell did it even get in there!?? and to top it off they charge way too much for delivery which is 100rs and the total was 460 but since i didn't have change the delivery guy went to get from nearby fuel station but the bas*#$% never returned i gave him 1000rs!!!  i would strongly advise you to never order from here as they clearly are cheating scums! stay away unless you wanna eat rotten crap literally and end up getting hunger problems instead of there goddamned name hunger solutions ...sucks to the core!!"), ('Rated 1.0', 'RATED\n  one of the worst food to order at night. sometimes its good,sometimes its not even edible. there is simply no quality at service. what is the point of providing a midnight outlet like this.'), ('Rated 4.5', 'RATED\n  Ordered this weekend, the service was good and I was informed that the delivery will happen in 1 hr, however it happened in 45 mins way to go guys, all the best.. we will order more'), ('Rated 1.0', 'RATED\n  Extremely poor service, non dependable and unreliable. If you are thinking that if you order food from here and you get your food then you are totally not mistaken. We had to sleep empty stomach.'), ('Rated 1.0', "RATED\n  The 1.0 point is only for performing the task of delivering food late at night. Although, nothing about the service or the food is good. They charge 100/- for delivering food which is ridiculous. Secondly, the butter chicken I ordered and charged for was boneless but was delivered with bones. The gravy was very watery which made it kind of tasteless. And I had ordered 2 bottles of water which I was billed for, but was not delivered. Please cross check the parcel before paying (Mistake which I didn't). Lastly, they promised delivery within 1 hour and the food was delivered in one and a half hour. I wouldn't have been too bummed about this if the food at least was satisfactory 'coz I definitely don't mind waiting for good food."), ('Rated 1.0', "RATED\n  Food is Ok as we don't have many option for mid night food... We were traveling back to Bangalore from a trip and it was 1:30am we called this ppl from Electronic City to check if they are available with food and can we come n pick food as they don't hv dine-in. The person asked us to come to point near to there place. So we stretched our journey from Sarjapur to indiranagar n after reaching there these ppl started showing attitude n then told us it will take 1hr for food prep so if ur interested then take or else look for something else. As we were at middle of road with no other option we waited for these ppl at 100feet road indiranagar and they gave our food at 3:00am. Not a good experience. PS: Dude we are paying for those food you are not giving any free service to us so maintain ur attitude."), ('Rated 4.0', 'RATED\n  One of the best places to hav food l8t night.. I ordered food around 1.40 Am.!! The food was served within 20 mins, the taste is also good.. After tryin many places its safe to say that Midnight Hunger Solutions is one of the best place to eat vry l8t night.. keep up the good work!!'), ('Rated 4.5', 'RATED\n  This is a perfect place for people who work late.\n\nWe ordered 4 chicken rolls and 2 egg rolls at 1 AM. To our surprise, the food arrived within 30 minutes. The quantity was more than sufficient and rolls were really well made and delicious.\n\nHaving tried at many late night outlets, i can safely say that Midnight Hunger provides the best service late at night..'), ('Rated 1.0', 'RATED\n  Extremely poor service, non dependable and unreliable. If you are thinking that if you order food from here and you get your food then you are totally not mistaken. We had to sleep empty stomach.'), ('Rated 1.0', "RATED\n  The 1.0 point is only for performing the task of delivering food late at night. Although, nothing about the service or the food is good. They charge 100/- for delivering food which is ridiculous. Secondly, the butter chicken I ordered and charged for was boneless but was delivered with bones. The gravy was very watery which made it kind of tasteless. And I had ordered 2 bottles of water which I was billed for, but was not delivered. Please cross check the parcel before paying (Mistake which I didn't). Lastly, they promised delivery within 1 hour and the food was delivered in one and a half hour. I wouldn't have been too bummed about this if the food at least was satisfactory 'coz I definitely don't mind waiting for good food."), ('Rated 1.0', "RATED\n  Food is Ok as we don't have many option for mid night food... We were traveling back to Bangalore from a trip and it was 1:30am we called this ppl from Electronic City to check if they are available with food and can we come n pick food as they don't hv dine-in. The person asked us to come to point near to there place. So we stretched our journey from Sarjapur to indiranagar n after reaching there these ppl started showing attitude n then told us it will take 1hr for food prep so if ur interested then take or else look for something else. As we were at middle of road with no other option we waited for these ppl at 100feet road indiranagar and they gave our food at 3:00am. Not a good experience. PS: Dude we are paying for those food you are not giving any free service to us so maintain ur attitude."), ('Rated 4.0', 'RATED\n  One of the best places to hav food l8t night.. I ordered food around 1.40 Am.!! The food was served within 20 mins, the taste is also good.. After tryin many places its safe to say that Midnight Hunger Solutions is one of the best place to eat vry l8t night.. keep up the good work!!'), ('Rated 4.5', 'RATED\n  This is a perfect place for people who work late.\n\nWe ordered 4 chicken rolls and 2 egg rolls at 1 AM. To our surprise, the food arrived within 30 minutes. The quantity was more than sufficient and rolls were really well made and delicious.\n\nHaving tried at many late night outlets, i can safely say that Midnight Hunger provides the best service late at night..'), ('Rated 1.0', 'RATED\n  Extremely poor service, non dependable and unreliable. If you are thinking that if you order food from here and you get your food then you are totally not mistaken. We had to sleep empty stomach.'), ('Rated 1.0', "RATED\n  The 1.0 point is only for performing the task of delivering food late at night. Although, nothing about the service or the food is good. They charge 100/- for delivering food which is ridiculous. Secondly, the butter chicken I ordered and charged for was boneless but was delivered with bones. The gravy was very watery which made it kind of tasteless. And I had ordered 2 bottles of water which I was billed for, but was not delivered. Please cross check the parcel before paying (Mistake which I didn't). Lastly, they promised delivery within 1 hour and the food was delivered in one and a half hour. I wouldn't have been too bummed about this if the food at least was satisfactory 'coz I definitely don't mind waiting for good food."), ('Rated 1.0', "RATED\n  Food is Ok as we don't have many option for mid night food... We were traveling back to Bangalore from a trip and it was 1:30am we called this ppl from Electronic City to check if they are available with food and can we come n pick food as they don't hv dine-in. The person asked us to come to point near to there place. So we stretched our journey from Sarjapur to indiranagar n after reaching there these ppl started showing attitude n then told us it will take 1hr for food prep so if ur interested then take or else look for something else. As we were at middle of road with no other option we waited for these ppl at 100feet road indiranagar and they gave our food at 3:00am. Not a good experience. PS: Dude we are paying for those food you are not giving any free service to us so maintain ur attitude."), ('Rated 4.0', 'RATED\n  One of the best places to hav food l8t night.. I ordered food around 1.40 Am.!! The food was served within 20 mins, the taste is also good.. After tryin many places its safe to say that Midnight Hunger Solutions is one of the best place to eat vry l8t night.. keep up the good work!!'), ('Rated 4.5', 'RATED\n  This is a perfect place for people who work late.\n\nWe ordered 4 chicken rolls and 2 egg rolls at 1 AM. To our surprise, the food arrived within 30 minutes. The quantity was more than sufficient and rolls were really well made and delicious.\n\nHaving tried at many late night outlets, i can safely say that Midnight Hunger provides the best service late at night..'), ('Rated 1.0', 'RATED\n  Extremely poor service, non dependable and unreliable. If you are thinking that if you order food from here and you get your food then you are totally not mistaken. We had to sleep empty stomach.'), ('Rated 1.0', "RATED\n  The 1.0 point is only for performing the task of delivering food late at night. Although, nothing about the service or the food is good. They charge 100/- for delivering food which is ridiculous. Secondly, the butter chicken I ordered and charged for was boneless but was delivered with bones. The gravy was very watery which made it kind of tasteless. And I had ordered 2 bottles of water which I was billed for, but was not delivered. Please cross check the parcel before paying (Mistake which I didn't). Lastly, they promised delivery within 1 hour and the food was delivered in one and a half hour. I wouldn't have been too bummed about this if the food at least was satisfactory 'coz I definitely don't mind waiting for good food."), ('Rated 1.0', "RATED\n  Food is Ok as we don't have many option for mid night food... We were traveling back to Bangalore from a trip and it was 1:30am we called this ppl from Electronic City to check if they are available with food and can we come n pick food as they don't hv dine-in. The person asked us to come to point near to there place. So we stretched our journey from Sarjapur to indiranagar n after reaching there these ppl started showing attitude n then told us it will take 1hr for food prep so if ur interested then take or else look for something else. As we were at middle of road with no other option we waited for these ppl at 100feet road indiranagar and they gave our food at 3:00am. Not a good experience. PS: Dude we are paying for those food you are not giving any free service to us so maintain ur attitude."), ('Rated 4.0', 'RATED\n  One of the best places to hav food l8t night.. I ordered food around 1.40 Am.!! The food was served within 20 mins, the taste is also good.. After tryin many places its safe to say that Midnight Hunger Solutions is one of the best place to eat vry l8t night.. keep up the good work!!'), ('Rated 4.5', 'RATED\n  This is a perfect place for people who work late.\n\nWe ordered 4 chicken rolls and 2 egg rolls at 1 AM. To our surprise, the food arrived within 30 minutes. The quantity was more than sufficient and rolls were really well made and delicious.\n\nHaving tried at many late night outlets, i can safely say that Midnight Hunger provides the best service late at night..'), ('Rated 5.0', 'RATED\n  This is the best place to order food from late at night. The food is delicious and the delivery is very prompt.\n\nI ordered around 2 AM and they delivered the food within 30 minutes. Considering that they are located a little far from my place, they delivered the food on time.\n\nI even recommended Midnight Hunger to some of my colleagues and they have had good experience as well.\n\nGood Job Midnight Hunger!! Keep it up!!'), ('Rated 1.0', "RATED\n  Not so great service coz they havent included d 2nd order which i placed after i hung up... when called back as the complete order wasnt delivered person mentioned they'll deliver in 20mins qhich dint happen & was waiting for the food to be delivered.... not a very satisfying service as a 1st time user ???"), ('Rated 4.5', "RATED\n  This is the perfect restaurant  to quench your appetite past midnight. I can't think of any other restaurant in India that would provide such a swift delivery. I order 5 egg rolls from the place at around 1 am, They delivered within 20 minutes. The rolls were fresh, hot and juicy. Midnight hunger is the best option incase you are craving for a proper food late at night, Midnight Hunger Solutions would deliver food very quick and more importantly tasteful. Please DO NOT go by the negative reviews posted here,  Trust me it is worth every damn penny you pay for the food late at night ."), ('Rated 1.5', 'RATED\n  Ordered late. But the food was horrid and inedible. The rotis were raw and the chicken was under cooked with an overdose of masala. The delivery took over an hour. Overall a hungry disappointment..'), ('Rated 1.0', "RATED\n  Ordered via a food delivery app, was promised delivery in 50 minutes. Keep in mind that I stay 10 minutes away from their restaurant. It's been 1.5 hours, and I'm still waiting. They remain forever elusive on the phone, with no intention whatsoever of delivering their food at all. Horrible service, and I'm pretty sure their food will disappoint as well. Bad job, guys. Not the best way to make a first impression."), ('Rated 5.0', 'RATED\n  This is the best place to order food from late at night. The food is delicious and the delivery is very prompt.\n\nI ordered around 2 AM and they delivered the food within 30 minutes. Considering that they are located a little far from my place, they delivered the food on time.\n\nI even recommended Midnight Hunger to some of my colleagues and they have had good experience as well.\n\nGood Job Midnight Hunger!! Keep it up!!'), ('Rated 1.0', "RATED\n  Not so great service coz they havent included d 2nd order which i placed after i hung up... when called back as the complete order wasnt delivered person mentioned they'll deliver in 20mins qhich dint happen & was waiting for the food to be delivered.... not a very satisfying service as a 1st time user ???"), ('Rated 4.5', "RATED\n  This is the perfect restaurant  to quench your appetite past midnight. I can't think of any other restaurant in India that would provide such a swift delivery. I order 5 egg rolls from the place at around 1 am, They delivered within 20 minutes. The rolls were fresh, hot and juicy. Midnight hunger is the best option incase you are craving for a proper food late at night, Midnight Hunger Solutions would deliver food very quick and more importantly tasteful. Please DO NOT go by the negative reviews posted here,  Trust me it is worth every damn penny you pay for the food late at night ."), ('Rated 1.5', 'RATED\n  Ordered late. But the food was horrid and inedible. The rotis were raw and the chicken was under cooked with an overdose of masala. The delivery took over an hour. Overall a hungry disappointment..'), ('Rated 1.0', "RATED\n  Ordered via a food delivery app, was promised delivery in 50 minutes. Keep in mind that I stay 10 minutes away from their restaurant. It's been 1.5 hours, and I'm still waiting. They remain forever elusive on the phone, with no intention whatsoever of delivering their food at all. Horrible service, and I'm pretty sure their food will disappoint as well. Bad job, guys. Not the best way to make a first impression."), ('Rated 1.0', "RATED\n  Worst experience ever! Don't ever order your food here if you expect a delivery at least within an hour! I happened to be visiting Bangalore and this place gave me the worst experience ever! I placed my order at 12:30.. And I got it a 2:30! And the delivery boy kept calling me at intervals of 15 min through the hours!\nIt was a very irritating and annoying experience!\nThe place and the people working here suck!"), ('Rated 1.0', 'RATED\n  This is one of the few places that deliver late at night but our experience last night was horrible. Though they deliver at midnight the food is most likely prepared the previous day. They recommended ordering the Chilli Paneer, the recipe which seems to be stolen from MRF. When asked for a replacement, we decided to go with the chilli mushroom. Again, there were hints of it being somewhat stale but the amount of chilli used in the dish not only covered it up but also definitely killed off the taste buds.'), ('Rated 1.0', 'RATED\n  I ordered half plate butter chicken and kerela porata . The bill amount was 225 . The food was delivered in 2 hours . To my surprise the bill amount was 325 , which is when i realized that i had been charged 100 rupees for delivery .  No one informed me about these charges . On delivery the arrogant delivery guy , charged me additional 50 rupees with an excuse that he did not have change. When I expressed my complain , he responded saying "My name is Ravi . Go complain to whoever you want . I felt , it was rip off . 150  rupees extra for 1 persons food .'), ('Rated 1.0', "RATED\n  Pathetic service. They take forever to deliver. When asked about the status they lie that it will reach you in 5 mins. Never order food from this place. It's nothing but disappointment..."), ('Rated 1.0', 'RATED\n  Ordered food at 11pm, had to call them twice to check the status, both the times they lied that the food would reach in 5 mins. Finally got my order at 1am'), ('Rated 1.0', "RATED\n  Worst experience ever! Don't ever order your food here if you expect a delivery at least within an hour! I happened to be visiting Bangalore and this place gave me the worst experience ever! I placed my order at 12:30.. And I got it a 2:30! And the delivery boy kept calling me at intervals of 15 min through the hours!\nIt was a very irritating and annoying experience!\nThe place and the people working here suck!"), ('Rated 1.0', 'RATED\n  This is one of the few places that deliver late at night but our experience last night was horrible. Though they deliver at midnight the food is most likely prepared the previous day. They recommended ordering the Chilli Paneer, the recipe which seems to be stolen from MRF. When asked for a replacement, we decided to go with the chilli mushroom. Again, there were hints of it being somewhat stale but the amount of chilli used in the dish not only covered it up but also definitely killed off the taste buds.'), ('Rated 1.0', 'RATED\n  I ordered half plate butter chicken and kerela porata . The bill amount was 225 . The food was delivered in 2 hours . To my surprise the bill amount was 325 , which is when i realized that i had been charged 100 rupees for delivery .  No one informed me about these charges . On delivery the arrogant delivery guy , charged me additional 50 rupees with an excuse that he did not have change. When I expressed my complain , he responded saying "My name is Ravi . Go complain to whoever you want . I felt , it was rip off . 150  rupees extra for 1 persons food .'), ('Rated 1.0', "RATED\n  Pathetic service. They take forever to deliver. When asked about the status they lie that it will reach you in 5 mins. Never order food from this place. It's nothing but disappointment..."), ('Rated 1.0', 'RATED\n  Ordered food at 11pm, had to call them twice to check the status, both the times they lied that the food would reach in 5 mins. Finally got my order at 1am'), ('Rated 1.0', "RATED\n  Worst experience ever! Don't ever order your food here if you expect a delivery at least within an hour! I happened to be visiting Bangalore and this place gave me the worst experience ever! I placed my order at 12:30.. And I got it a 2:30! And the delivery boy kept calling me at intervals of 15 min through the hours!\nIt was a very irritating and annoying experience!\nThe place and the people working here suck!"), ('Rated 1.0', 'RATED\n  This is one of the few places that deliver late at night but our experience last night was horrible. Though they deliver at midnight the food is most likely prepared the previous day. They recommended ordering the Chilli Paneer, the recipe which seems to be stolen from MRF. When asked for a replacement, we decided to go with the chilli mushroom. Again, there were hints of it being somewhat stale but the amount of chilli used in the dish not only covered it up but also definitely killed off the taste buds.'), ('Rated 1.0', 'RATED\n  I ordered half plate butter chicken and kerela porata . The bill amount was 225 . The food was delivered in 2 hours . To my surprise the bill amount was 325 , which is when i realized that i had been charged 100 rupees for delivery .  No one informed me about these charges . On delivery the arrogant delivery guy , charged me additional 50 rupees with an excuse that he did not have change. When I expressed my complain , he responded saying "My name is Ravi . Go complain to whoever you want . I felt , it was rip off . 150  rupees extra for 1 persons food .'), ('Rated 1.0', "RATED\n  Pathetic service. They take forever to deliver. When asked about the status they lie that it will reach you in 5 mins. Never order food from this place. It's nothing but disappointment..."), ('Rated 1.0', 'RATED\n  Ordered food at 11pm, had to call them twice to check the status, both the times they lied that the food would reach in 5 mins. Finally got my order at 1am'), ('Rated 1.0', "RATED\n  Worst experience ever! Don't ever order your food here if you expect a delivery at least within an hour! I happened to be visiting Bangalore and this place gave me the worst experience ever! I placed my order at 12:30.. And I got it a 2:30! And the delivery boy kept calling me at intervals of 15 min through the hours!\nIt was a very irritating and annoying experience!\nThe place and the people working here suck!"), ('Rated 1.0', 'RATED\n  This is one of the few places that deliver late at night but our experience last night was horrible. Though they deliver at midnight the food is most likely prepared the previous day. They recommended ordering the Chilli Paneer, the recipe which seems to be stolen from MRF. When asked for a replacement, we decided to go with the chilli mushroom. Again, there were hints of it being somewhat stale but the amount of chilli used in the dish not only covered it up but also definitely killed off the taste buds.'), ('Rated 1.0', 'RATED\n  I ordered half plate butter chicken and kerela porata . The bill amount was 225 . The food was delivered in 2 hours . To my surprise the bill amount was 325 , which is when i realized that i had been charged 100 rupees for delivery .  No one informed me about these charges . On delivery the arrogant delivery guy , charged me additional 50 rupees with an excuse that he did not have change. When I expressed my complain , he responded saying "My name is Ravi . Go complain to whoever you want . I felt , it was rip off . 150  rupees extra for 1 persons food .'), ('Rated 1.0', "RATED\n  Pathetic service. They take forever to deliver. When asked about the status they lie that it will reach you in 5 mins. Never order food from this place. It's nothing but disappointment..."), ('Rated 1.0', 'RATED\n  Ordered food at 11pm, had to call them twice to check the status, both the times they lied that the food would reach in 5 mins. Finally got my order at 1am'), ('Rated 1.0', "RATED\n  Worst experience ever! Don't ever order your food here if you expect a delivery at least within an hour! I happened to be visiting Bangalore and this place gave me the worst experience ever! I placed my order at 12:30.. And I got it a 2:30! And the delivery boy kept calling me at intervals of 15 min through the hours!\nIt was a very irritating and annoying experience!\nThe place and the people working here suck!"), ('Rated 1.0', 'RATED\n  This is one of the few places that deliver late at night but our experience last night was horrible. Though they deliver at midnight the food is most likely prepared the previous day. They recommended ordering the Chilli Paneer, the recipe which seems to be stolen from MRF. When asked for a replacement, we decided to go with the chilli mushroom. Again, there were hints of it being somewhat stale but the amount of chilli used in the dish not only covered it up but also definitely killed off the taste buds.'), ('Rated 1.0', 'RATED\n  I ordered half plate butter chicken and kerela porata . The bill amount was 225 . The food was delivered in 2 hours . To my surprise the bill amount was 325 , which is when i realized that i had been charged 100 rupees for delivery .  No one informed me about these charges . On delivery the arrogant delivery guy , charged me additional 50 rupees with an excuse that he did not have change. When I expressed my complain , he responded saying "My name is Ravi . Go complain to whoever you want . I felt , it was rip off . 150  rupees extra for 1 persons food .'), ('Rated 1.0', "RATED\n  Pathetic service. They take forever to deliver. When asked about the status they lie that it will reach you in 5 mins. Never order food from this place. It's nothing but disappointment..."), ('Rated 1.0', 'RATED\n  Ordered food at 11pm, had to call them twice to check the status, both the times they lied that the food would reach in 5 mins. Finally got my order at 1am'), ('Rated 1.0', 'RATED\n  Extremely bad service. I ordered food at 12:30 AM. I called again at 1:00 AM to check the status. They were still making the food. Okay. Called again at 1:30 AM. Still making the food! At 2:38 AM they call to say that your food has been prepared, where do you want to get it delivered? Plus Rs. 120 delivery charges. Cancelled the order so no idea about the quality of food.'), ('Rated 1.5', 'RATED\n  This place serves really bad food & they charge exorbitantly.\nI ordered paneer chilly and played (230/-).160/- for the food and a price of 70/- for packing and delivery. and it serves just one.\n\nThis paneer requires a grinder to chew and a chainsaw to cut. The onion and the capcicum were the only good things about the entire meal.\n\nHumble advice: you guys should atleast taste the food before you send it.'), ('Rated 1.0', 'RATED\n  Pathetic Service.. ordered the food @2am .. waited till 4.30am.. no response from this idiots.. DONT ever order from them... They will make ue hunger last till breakfast..'), ('Rated 3.5', 'RATED\n  Best food available at the night times. Dishes are spicy at the same time delicious. It is worth trying. Only con is delivery charges. Best choice for bulk orders'), ('Rated 1.5', "RATED\n  They are nothing but lying conniving thieves.I had to pay 340 for an order of 160.They charged 100 for delivery.What more should i say?Everything was priced above MRP,water bottle of 20 for 30 and coke for 50.Also the chicken pepper(half) is supposed to have 6 pieces,which it did but all bones and no flesh.Basically they charged me for the gravy with lots of masala,spices and onion.Even that would churn your stomach and can't couple it with anything.I only feel bad for the delivery person who had to come in the heavy rain and the 1 is for him.The restaurant gets a 0.Also the coke i ordered tasted really bad,no fizz,seemed pretty old or damaged or something.Really,people stay off this place."), ('Rated 1.0', 'RATED\n  Extremely bad service. I ordered food at 12:30 AM. I called again at 1:00 AM to check the status. They were still making the food. Okay. Called again at 1:30 AM. Still making the food! At 2:38 AM they call to say that your food has been prepared, where do you want to get it delivered? Plus Rs. 120 delivery charges. Cancelled the order so no idea about the quality of food.'), ('Rated 1.5', 'RATED\n  This place serves really bad food & they charge exorbitantly.\nI ordered paneer chilly and played (230/-).160/- for the food and a price of 70/- for packing and delivery. and it serves just one.\n\nThis paneer requires a grinder to chew and a chainsaw to cut. The onion and the capcicum were the only good things about the entire meal.\n\nHumble advice: you guys should atleast taste the food before you send it.'), ('Rated 1.0', 'RATED\n  Pathetic Service.. ordered the food @2am .. waited till 4.30am.. no response from this idiots.. DONT ever order from them... They will make ue hunger last till breakfast..'), ('Rated 3.5', 'RATED\n  Best food available at the night times. Dishes are spicy at the same time delicious. It is worth trying. Only con is delivery charges. Best choice for bulk orders'), ('Rated 1.5', "RATED\n  They are nothing but lying conniving thieves.I had to pay 340 for an order of 160.They charged 100 for delivery.What more should i say?Everything was priced above MRP,water bottle of 20 for 30 and coke for 50.Also the chicken pepper(half) is supposed to have 6 pieces,which it did but all bones and no flesh.Basically they charged me for the gravy with lots of masala,spices and onion.Even that would churn your stomach and can't couple it with anything.I only feel bad for the delivery person who had to come in the heavy rain and the 1 is for him.The restaurant gets a 0.Also the coke i ordered tasted really bad,no fizz,seemed pretty old or damaged or something.Really,people stay off this place."), ('Rated 1.0', 'RATED\n  Extremely bad service. I ordered food at 12:30 AM. I called again at 1:00 AM to check the status. They were still making the food. Okay. Called again at 1:30 AM. Still making the food! At 2:38 AM they call to say that your food has been prepared, where do you want to get it delivered? Plus Rs. 120 delivery charges. Cancelled the order so no idea about the quality of food.'), ('Rated 1.5', 'RATED\n  This place serves really bad food & they charge exorbitantly.\nI ordered paneer chilly and played (230/-).160/- for the food and a price of 70/- for packing and delivery. and it serves just one.\n\nThis paneer requires a grinder to chew and a chainsaw to cut. The onion and the capcicum were the only good things about the entire meal.\n\nHumble advice: you guys should atleast taste the food before you send it.'), ('Rated 1.0', 'RATED\n  Pathetic Service.. ordered the food @2am .. waited till 4.30am.. no response from this idiots.. DONT ever order from them... They will make ue hunger last till breakfast..'), ('Rated 3.5', 'RATED\n  Best food available at the night times. Dishes are spicy at the same time delicious. It is worth trying. Only con is delivery charges. Best choice for bulk orders'), ('Rated 1.5', "RATED\n  They are nothing but lying conniving thieves.I had to pay 340 for an order of 160.They charged 100 for delivery.What more should i say?Everything was priced above MRP,water bottle of 20 for 30 and coke for 50.Also the chicken pepper(half) is supposed to have 6 pieces,which it did but all bones and no flesh.Basically they charged me for the gravy with lots of masala,spices and onion.Even that would churn your stomach and can't couple it with anything.I only feel bad for the delivery person who had to come in the heavy rain and the 1 is for him.The restaurant gets a 0.Also the coke i ordered tasted really bad,no fizz,seemed pretty old or damaged or something.Really,people stay off this place."), ('Rated 1.0', 'RATED\n  Extremely bad service. I ordered food at 12:30 AM. I called again at 1:00 AM to check the status. They were still making the food. Okay. Called again at 1:30 AM. Still making the food! At 2:38 AM they call to say that your food has been prepared, where do you want to get it delivered? Plus Rs. 120 delivery charges. Cancelled the order so no idea about the quality of food.'), ('Rated 1.5', 'RATED\n  This place serves really bad food & they charge exorbitantly.\nI ordered paneer chilly and played (230/-).160/- for the food and a price of 70/- for packing and delivery. and it serves just one.\n\nThis paneer requires a grinder to chew and a chainsaw to cut. The onion and the capcicum were the only good things about the entire meal.\n\nHumble advice: you guys should atleast taste the food before you send it.'), ('Rated 1.0', 'RATED\n  Pathetic Service.. ordered the food @2am .. waited till 4.30am.. no response from this idiots.. DONT ever order from them... They will make ue hunger last till breakfast..'), ('Rated 3.5', 'RATED\n  Best food available at the night times. Dishes are spicy at the same time delicious. It is worth trying. Only con is delivery charges. Best choice for bulk orders'), ('Rated 1.5', "RATED\n  They are nothing but lying conniving thieves.I had to pay 340 for an order of 160.They charged 100 for delivery.What more should i say?Everything was priced above MRP,water bottle of 20 for 30 and coke for 50.Also the chicken pepper(half) is supposed to have 6 pieces,which it did but all bones and no flesh.Basically they charged me for the gravy with lots of masala,spices and onion.Even that would churn your stomach and can't couple it with anything.I only feel bad for the delivery person who had to come in the heavy rain and the 1 is for him.The restaurant gets a 0.Also the coke i ordered tasted really bad,no fizz,seemed pretty old or damaged or something.Really,people stay off this place."), ('Rated 1.0', "RATED\n  Hi Friends,\n\nMidnight hunger made me to stay hungry whole night..\nKindly drink water and sleep rather than to wait for the food ordered.. delivery of food was after 1 & half hour from the time of order placed.. don't know about the taste but by the service itself can make out that this was the first and the last time to approach midnight hunger. \n\nI wish I could vote them in - 5. but unfortunately not able to vote them. forcefully voting them 1."), ('Rated 1.0', "RATED\n  Dear Midnight hunger solution,\n\nIt was really disappointing on the first time order. We have ordered at 11.30pm today & we're given the buffer of 50 minutes since it's a weekend.We waited till 12.30am & started calling, none of our calls were answered & when the call was finally answered at 2.20am.All that the owner told was 'Sorry', which doesn't really compensates the hunger or almost 3 hours wait.\n\nThis was an awful experience.Please do let the customer know if you're not going to deliver the food on time or For God sake Answer the Calls."), ('Rated 5.0', "RATED\n  A life of an event manger isn't easy, we keep travelling around the country and out setup for events happen at odd hours, this is a totally blessing, I used them quite a few times when the setup was happening in forum mall and garuda, they informed me about the delay as it was raining and the delivery boy still made it, I had givning up hopes of the food reaching us. The quantity was more than enough, Also in Mumbai I called them from Infinity Mall Lokhanadwala and super food arrives in an hour, I am now a big fan of theres. Please come to Chennai also we need you here too,"), ('Rated 1.5', "RATED\n  You can't expect very tasty food at around 2 or 3 am in the morning but can expect some customer service. I ordered at 2 am and when I called back at 3 am they had no idea about the order. Seems like there are many people managing or taking orders which leads to enough confusion and forgetting your order. And another worst part is - if you understand the lang they speak, they don't respect you as a customer off the phone. The words they use are harsh and filthy. If you want to order late use latenight.in these guys look to be professionals."), ('Rated 1.0', "RATED\n  I placed the order at 1.58 and I waited till 4 am.. And the food hasn't arrived yet.. And when we tried to contact them Mr. Suresh was really rude in talking to us. Never going to order from this place again"), ('Rated 1.0', "RATED\n  Hi Friends,\n\nMidnight hunger made me to stay hungry whole night..\nKindly drink water and sleep rather than to wait for the food ordered.. delivery of food was after 1 & half hour from the time of order placed.. don't know about the taste but by the service itself can make out that this was the first and the last time to approach midnight hunger. \n\nI wish I could vote them in - 5. but unfortunately not able to vote them. forcefully voting them 1."), ('Rated 1.0', "RATED\n  Dear Midnight hunger solution,\n\nIt was really disappointing on the first time order. We have ordered at 11.30pm today & we're given the buffer of 50 minutes since it's a weekend.We waited till 12.30am & started calling, none of our calls were answered & when the call was finally answered at 2.20am.All that the owner told was 'Sorry', which doesn't really compensates the hunger or almost 3 hours wait.\n\nThis was an awful experience.Please do let the customer know if you're not going to deliver the food on time or For God sake Answer the Calls."), ('Rated 5.0', "RATED\n  A life of an event manger isn't easy, we keep travelling around the country and out setup for events happen at odd hours, this is a totally blessing, I used them quite a few times when the setup was happening in forum mall and garuda, they informed me about the delay as it was raining and the delivery boy still made it, I had givning up hopes of the food reaching us. The quantity was more than enough, Also in Mumbai I called them from Infinity Mall Lokhanadwala and super food arrives in an hour, I am now a big fan of theres. Please come to Chennai also we need you here too,"), ('Rated 1.5', "RATED\n  You can't expect very tasty food at around 2 or 3 am in the morning but can expect some customer service. I ordered at 2 am and when I called back at 3 am they had no idea about the order. Seems like there are many people managing or taking orders which leads to enough confusion and forgetting your order. And another worst part is - if you understand the lang they speak, they don't respect you as a customer off the phone. The words they use are harsh and filthy. If you want to order late use latenight.in these guys look to be professionals."), ('Rated 1.0', "RATED\n  I placed the order at 1.58 and I waited till 4 am.. And the food hasn't arrived yet.. And when we tried to contact them Mr. Suresh was really rude in talking to us. Never going to order from this place again"), ('Rated 1.0', "RATED\n  Hi Friends,\n\nMidnight hunger made me to stay hungry whole night..\nKindly drink water and sleep rather than to wait for the food ordered.. delivery of food was after 1 & half hour from the time of order placed.. don't know about the taste but by the service itself can make out that this was the first and the last time to approach midnight hunger. \n\nI wish I could vote them in - 5. but unfortunately not able to vote them. forcefully voting them 1."), ('Rated 1.0', "RATED\n  Dear Midnight hunger solution,\n\nIt was really disappointing on the first time order. We have ordered at 11.30pm today & we're given the buffer of 50 minutes since it's a weekend.We waited till 12.30am & started calling, none of our calls were answered & when the call was finally answered at 2.20am.All that the owner told was 'Sorry', which doesn't really compensates the hunger or almost 3 hours wait.\n\nThis was an awful experience.Please do let the customer know if you're not going to deliver the food on time or For God sake Answer the Calls."), ('Rated 5.0', "RATED\n  A life of an event manger isn't easy, we keep travelling around the country and out setup for events happen at odd hours, this is a totally blessing, I used them quite a few times when the setup was happening in forum mall and garuda, they informed me about the delay as it was raining and the delivery boy still made it, I had givning up hopes of the food reaching us. The quantity was more than enough, Also in Mumbai I called them from Infinity Mall Lokhanadwala and super food arrives in an hour, I am now a big fan of theres. Please come to Chennai also we need you here too,"), ('Rated 1.5', "RATED\n  You can't expect very tasty food at around 2 or 3 am in the morning but can expect some customer service. I ordered at 2 am and when I called back at 3 am they had no idea about the order. Seems like there are many people managing or taking orders which leads to enough confusion and forgetting your order. And another worst part is - if you understand the lang they speak, they don't respect you as a customer off the phone. The words they use are harsh and filthy. If you want to order late use latenight.in these guys look to be professionals."), ('Rated 1.0', "RATED\n  I placed the order at 1.58 and I waited till 4 am.. And the food hasn't arrived yet.. And when we tried to contact them Mr. Suresh was really rude in talking to us. Never going to order from this place again"), ('Rated 1.0', 'RATED\n  This place has disappointment written all over it . Taste of food is pathetic , Customer Service and delivery - even worse.\n\nI had ordered once from this place - it took them 3 hours to deliver the food despite the fact that my place is not that far from where they are located. \n\nFood had so much oil that it made 50% of the stuff we ordered . Chapati hard enough to crack your jaws. \n\nIf you hungry in the middle of night and plan to eat from this place. I would suggest - Better stay hungry.\n\nMy rating -1/10'), ('Rated 4.0', 'RATED\n  It was 11.30pm and it was raining, hence no delivery but searched zomato and found midnight hunger. The reviews were not great hence was scared to order but no option, so ordered. The time for delivery was 1 hour and they delivered.\nFood was not so great but should not expect too much at this time.\nZomato saved me.......Thumbs up for the delivery......???'), ('Rated 1.0', 'RATED\n  We ordered food at 1 AM. The food was supposed to reach us within 60 minutes. After all the excuses and justifications, 3 and a half hours later we got bad food that was cold. It was way too oily and absolutely indelible.'), ('Rated 1.0', 'RATED\n  There is no 0 option, hence I\'m rating it as 1. Well, I\'ve placed two orders until now. \n\nOrder 1\nOrdered at 4am. Delivered at 5.15am. I would have rather slept. \nKinda oily noodles. Manchurian was fine.\nI asked to get card reader. They got it.\n\nOrder 2\nOrdered at 3am. Delivered at 4.30am.\nAsked to get card reader. Did not get. Had to go to ATM to fetch money in the middle of the night!\nAsked for Garlic Chicken "DRY". The Gravy... yes GRAVY was SO MUCH that it spilled in the bag itself.\n\nThey really need to know that hungry people are ANGRY people.'), ('Rated 1.0', "RATED\n  Pathetic. Disappointing.Terrible. Get my drift?\nI placed my order at 11PM and at 12:49AM i still haven't received it.\nNo body likes waiting for their food and definitely not one and a half hour!!!\n\nI was promised 40minutes. I understand short staffed, pressure, too many orders - at least they could have been honest about it.\n\nI called more than 10 times following up my order (yeah i was hungry) and the times that i got through I got quite a bit of attitude from the staff and delivery guy. I couldn't handle that attitude on an empty stomach."), ('Rated 1.0', 'RATED\n  This place has disappointment written all over it . Taste of food is pathetic , Customer Service and delivery - even worse.\n\nI had ordered once from this place - it took them 3 hours to deliver the food despite the fact that my place is not that far from where they are located. \n\nFood had so much oil that it made 50% of the stuff we ordered . Chapati hard enough to crack your jaws. \n\nIf you hungry in the middle of night and plan to eat from this place. I would suggest - Better stay hungry.\n\nMy rating -1/10'), ('Rated 4.0', 'RATED\n  It was 11.30pm and it was raining, hence no delivery but searched zomato and found midnight hunger. The reviews were not great hence was scared to order but no option, so ordered. The time for delivery was 1 hour and they delivered.\nFood was not so great but should not expect too much at this time.\nZomato saved me.......Thumbs up for the delivery......???'), ('Rated 1.0', 'RATED\n  We ordered food at 1 AM. The food was supposed to reach us within 60 minutes. After all the excuses and justifications, 3 and a half hours later we got bad food that was cold. It was way too oily and absolutely indelible.'), ('Rated 1.0', 'RATED\n  There is no 0 option, hence I\'m rating it as 1. Well, I\'ve placed two orders until now. \n\nOrder 1\nOrdered at 4am. Delivered at 5.15am. I would have rather slept. \nKinda oily noodles. Manchurian was fine.\nI asked to get card reader. They got it.\n\nOrder 2\nOrdered at 3am. Delivered at 4.30am.\nAsked to get card reader. Did not get. Had to go to ATM to fetch money in the middle of the night!\nAsked for Garlic Chicken "DRY". The Gravy... yes GRAVY was SO MUCH that it spilled in the bag itself.\n\nThey really need to know that hungry people are ANGRY people.'), ('Rated 1.0', "RATED\n  Pathetic. Disappointing.Terrible. Get my drift?\nI placed my order at 11PM and at 12:49AM i still haven't received it.\nNo body likes waiting for their food and definitely not one and a half hour!!!\n\nI was promised 40minutes. I understand short staffed, pressure, too many orders - at least they could have been honest about it.\n\nI called more than 10 times following up my order (yeah i was hungry) and the times that i got through I got quite a bit of attitude from the staff and delivery guy. I couldn't handle that attitude on an empty stomach."), ('Rated 1.0', 'RATED\n  This place has disappointment written all over it . Taste of food is pathetic , Customer Service and delivery - even worse.\n\nI had ordered once from this place - it took them 3 hours to deliver the food despite the fact that my place is not that far from where they are located. \n\nFood had so much oil that it made 50% of the stuff we ordered . Chapati hard enough to crack your jaws. \n\nIf you hungry in the middle of night and plan to eat from this place. I would suggest - Better stay hungry.\n\nMy rating -1/10'), ('Rated 4.0', 'RATED\n  It was 11.30pm and it was raining, hence no delivery but searched zomato and found midnight hunger. The reviews were not great hence was scared to order but no option, so ordered. The time for delivery was 1 hour and they delivered.\nFood was not so great but should not expect too much at this time.\nZomato saved me.......Thumbs up for the delivery......???'), ('Rated 1.0', 'RATED\n  We ordered food at 1 AM. The food was supposed to reach us within 60 minutes. After all the excuses and justifications, 3 and a half hours later we got bad food that was cold. It was way too oily and absolutely indelible.'), ('Rated 1.0', 'RATED\n  There is no 0 option, hence I\'m rating it as 1. Well, I\'ve placed two orders until now. \n\nOrder 1\nOrdered at 4am. Delivered at 5.15am. I would have rather slept. \nKinda oily noodles. Manchurian was fine.\nI asked to get card reader. They got it.\n\nOrder 2\nOrdered at 3am. Delivered at 4.30am.\nAsked to get card reader. Did not get. Had to go to ATM to fetch money in the middle of the night!\nAsked for Garlic Chicken "DRY". The Gravy... yes GRAVY was SO MUCH that it spilled in the bag itself.\n\nThey really need to know that hungry people are ANGRY people.'), ('Rated 1.0', "RATED\n  Pathetic. Disappointing.Terrible. Get my drift?\nI placed my order at 11PM and at 12:49AM i still haven't received it.\nNo body likes waiting for their food and definitely not one and a half hour!!!\n\nI was promised 40minutes. I understand short staffed, pressure, too many orders - at least they could have been honest about it.\n\nI called more than 10 times following up my order (yeah i was hungry) and the times that i got through I got quite a bit of attitude from the staff and delivery guy. I couldn't handle that attitude on an empty stomach."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', 'RATED\n  40 minutes = 1 and a half hour\nWe were promised 40 minutes and did not receive it even after more than an hour and a half.\nPathetic service. Very misleading. Never ordering from here again.'), ('Rated 4.5', "RATED\n  Wife's gone abroad and in laws dropped by that too past midnight to wish me for my birthday, they asked for a treat. I remembered Midnight Hunger Solution which came to my rescue and my order of Lemon chicken, Pepper chicken and garlic chicken along with hot wheat parothas and chicken fried rice was delivered to my door step within 45mins and that made my night and my in laws were happy to have a hot meal so late at night.\nThanks again Midnight Hunger Solution! Keep up the good work."), ('Rated 3.0', "RATED\n  Ordered at 11. Was delivered in an hour. The gravy was great and sufficient quantity as well although the kulcha was brittle and cold. One thing I disliked the most is Delivery charges of almost rs 100!!! . Not worth it. Come on guys. Make it free of cost or atleast cut the cost by half. And yeah considering I stay in Indiranagar. that's too much :-P"), ('Rated 1.0', 'RATED\n  Bloody liars! They said Rs. 160 on the menu for a biryani. Said Rs. 260 on the phone. But actually took Rs. 300 when they delivered! Absolute liars!'), ('Rated 1.0', "RATED\n  These guys took like 2 and a half hours to have my food delivered the last time and when the food finally did arrive our relief was short lived. The biryani was dry and tasted really off and we ended up just feeding it to the dogs the next day.\nMy advice to the general public: there are other options out there including cooking yourself a bowl of maggi noodles. I'd strongly suggest you give this place a miss."), ('Rated 1.0', "RATED\n  If I had a choice of 0.1 I wud have given them that rating...no respect for customers just plain rude to clients...hope they change their attitude of they are the only ones to order from in bangalore and give some respect for time and money's worth..."), ('Rated 1.0', "RATED\n  Worst place to order from. Its been almost two hours and i still await my order. The guy who answers the phone plus the delivery guy either make excuses or just slam the phone while you're asking them how long will they take. That's amazing service any customer would deserve....NOT !! Did not have a zero to give them...probably one!"), ('Rated 5.0', 'RATED\n  In the middle of a pre-wedding night, when my sister\'s and i were starving to death, that\'s when we ordered for these Healthy, Spicy \'Chicken Rolls\'.\nAhhh, so Yummy!!! It makes my mouth water again...\n\nLove your Concept  "Midnight hunger..."\n\nLets do it again..'), ('Rated 1.0', "RATED\n  Very Pathetic food and taste... They don't even execute the right order..Total waste of money trying it out hereThey charge 100 Rs for delivery and packing.The package is opened and half the gravy inside polythene bag. Top of this when tasted the food felt like its make over of earlier cooked food not prepared and delivered."), ('Rated 4.0', 'RATED\n  Delivery was awesome ...within 40 min got the order...but...food was really pathetic in chicken fried rice i cant find a single piece of chicken.....The taste is ok ...for midnit hungers its really a gud solution.....'), ('Rated 1.0', "RATED\n  If I had a choice of 0.1 I wud have given them that rating...no respect for customers just plain rude to clients...hope they change their attitude of they are the only ones to order from in bangalore and give some respect for time and money's worth..."), ('Rated 1.0', "RATED\n  Worst place to order from. Its been almost two hours and i still await my order. The guy who answers the phone plus the delivery guy either make excuses or just slam the phone while you're asking them how long will they take. That's amazing service any customer would deserve....NOT !! Did not have a zero to give them...probably one!"), ('Rated 5.0', 'RATED\n  In the middle of a pre-wedding night, when my sister\'s and i were starving to death, that\'s when we ordered for these Healthy, Spicy \'Chicken Rolls\'.\nAhhh, so Yummy!!! It makes my mouth water again...\n\nLove your Concept  "Midnight hunger..."\n\nLets do it again..'), ('Rated 1.0', "RATED\n  Very Pathetic food and taste... They don't even execute the right order..Total waste of money trying it out hereThey charge 100 Rs for delivery and packing.The package is opened and half the gravy inside polythene bag. Top of this when tasted the food felt like its make over of earlier cooked food not prepared and delivered."), ('Rated 4.0', 'RATED\n  Delivery was awesome ...within 40 min got the order...but...food was really pathetic in chicken fried rice i cant find a single piece of chicken.....The taste is ok ...for midnit hungers its really a gud solution.....'), ('Rated 1.0', "RATED\n  If I had a choice of 0.1 I wud have given them that rating...no respect for customers just plain rude to clients...hope they change their attitude of they are the only ones to order from in bangalore and give some respect for time and money's worth..."), ('Rated 1.0', "RATED\n  Worst place to order from. Its been almost two hours and i still await my order. The guy who answers the phone plus the delivery guy either make excuses or just slam the phone while you're asking them how long will they take. That's amazing service any customer would deserve....NOT !! Did not have a zero to give them...probably one!"), ('Rated 5.0', 'RATED\n  In the middle of a pre-wedding night, when my sister\'s and i were starving to death, that\'s when we ordered for these Healthy, Spicy \'Chicken Rolls\'.\nAhhh, so Yummy!!! It makes my mouth water again...\n\nLove your Concept  "Midnight hunger..."\n\nLets do it again..'), ('Rated 1.0', "RATED\n  Very Pathetic food and taste... They don't even execute the right order..Total waste of money trying it out hereThey charge 100 Rs for delivery and packing.The package is opened and half the gravy inside polythene bag. Top of this when tasted the food felt like its make over of earlier cooked food not prepared and delivered."), ('Rated 4.0', 'RATED\n  Delivery was awesome ...within 40 min got the order...but...food was really pathetic in chicken fried rice i cant find a single piece of chicken.....The taste is ok ...for midnit hungers its really a gud solution.....'), ('Rated 1.0', "RATED\n  If I had a choice of 0.1 I wud have given them that rating...no respect for customers just plain rude to clients...hope they change their attitude of they are the only ones to order from in bangalore and give some respect for time and money's worth..."), ('Rated 1.0', "RATED\n  Worst place to order from. Its been almost two hours and i still await my order. The guy who answers the phone plus the delivery guy either make excuses or just slam the phone while you're asking them how long will they take. That's amazing service any customer would deserve....NOT !! Did not have a zero to give them...probably one!"), ('Rated 5.0', 'RATED\n  In the middle of a pre-wedding night, when my sister\'s and i were starving to death, that\'s when we ordered for these Healthy, Spicy \'Chicken Rolls\'.\nAhhh, so Yummy!!! It makes my mouth water again...\n\nLove your Concept  "Midnight hunger..."\n\nLets do it again..'), ('Rated 1.0', "RATED\n  Very Pathetic food and taste... They don't even execute the right order..Total waste of money trying it out hereThey charge 100 Rs for delivery and packing.The package is opened and half the gravy inside polythene bag. Top of this when tasted the food felt like its make over of earlier cooked food not prepared and delivered."), ('Rated 4.0', 'RATED\n  Delivery was awesome ...within 40 min got the order...but...food was really pathetic in chicken fried rice i cant find a single piece of chicken.....The taste is ok ...for midnit hungers its really a gud solution.....'), ('Rated 1.0', "RATED\n  If I had a choice of 0.1 I wud have given them that rating...no respect for customers just plain rude to clients...hope they change their attitude of they are the only ones to order from in bangalore and give some respect for time and money's worth..."), ('Rated 1.0', "RATED\n  Worst place to order from. Its been almost two hours and i still await my order. The guy who answers the phone plus the delivery guy either make excuses or just slam the phone while you're asking them how long will they take. That's amazing service any customer would deserve....NOT !! Did not have a zero to give them...probably one!"), ('Rated 5.0', 'RATED\n  In the middle of a pre-wedding night, when my sister\'s and i were starving to death, that\'s when we ordered for these Healthy, Spicy \'Chicken Rolls\'.\nAhhh, so Yummy!!! It makes my mouth water again...\n\nLove your Concept  "Midnight hunger..."\n\nLets do it again..'), ('Rated 1.0', "RATED\n  Very Pathetic food and taste... They don't even execute the right order..Total waste of money trying it out hereThey charge 100 Rs for delivery and packing.The package is opened and half the gravy inside polythene bag. Top of this when tasted the food felt like its make over of earlier cooked food not prepared and delivered."), ('Rated 4.0', 'RATED\n  Delivery was awesome ...within 40 min got the order...but...food was really pathetic in chicken fried rice i cant find a single piece of chicken.....The taste is ok ...for midnit hungers its really a gud solution.....'), ('Rated 1.0', "RATED\n  If I had a choice of 0.1 I wud have given them that rating...no respect for customers just plain rude to clients...hope they change their attitude of they are the only ones to order from in bangalore and give some respect for time and money's worth..."), ('Rated 1.0', "RATED\n  Worst place to order from. Its been almost two hours and i still await my order. The guy who answers the phone plus the delivery guy either make excuses or just slam the phone while you're asking them how long will they take. That's amazing service any customer would deserve....NOT !! Did not have a zero to give them...probably one!"), ('Rated 5.0', 'RATED\n  In the middle of a pre-wedding night, when my sister\'s and i were starving to death, that\'s when we ordered for these Healthy, Spicy \'Chicken Rolls\'.\nAhhh, so Yummy!!! It makes my mouth water again...\n\nLove your Concept  "Midnight hunger..."\n\nLets do it again..'), ('Rated 1.0', "RATED\n  Very Pathetic food and taste... They don't even execute the right order..Total waste of money trying it out hereThey charge 100 Rs for delivery and packing.The package is opened and half the gravy inside polythene bag. Top of this when tasted the food felt like its make over of earlier cooked food not prepared and delivered."), ('Rated 4.0', 'RATED\n  Delivery was awesome ...within 40 min got the order...but...food was really pathetic in chicken fried rice i cant find a single piece of chicken.....The taste is ok ...for midnit hungers its really a gud solution.....'), ('Rated 1.0', "RATED\n  Guys, even if you're famished.... Do NOT order from here... Worst customer service.\nFood Sucks.. They deliver after 2.5 hours each n everytime"), ('Rated 5.0', 'RATED\n  My personal experience with Midnight hunger solutions was quite good..I was really surprised to see the quantity and quality of food provided by them.\n\nIt was around 1.30 am in the middle of the night and i was feeling damn hungry, it is  obvious that no restaurants will be opened at that time so i called my brother-in-law and got the number. I ordered 1 chicken fried rice and half chicken kabab and believe me when i say it was awesome !!  I felt as if i am enjoying the food in the restaurant.\n\nMy suggestion to those who are reading this is "Don\'t  just wonder to dial the number(+91 8088922299) just go for it "  who knows you will be pleased to write a feedback about your experience.\n\nAli you are a real saviour, special thanks to you :)'), ('Rated 1.0', "RATED\n  True they're open all night, true they deliver food in an hour, true they are very courteous, and perhaps those reasons help justify their higher than average prices... However the food doesn't. It was nothing short of horrible, tasteless and soaked in oil. They really need to step up they're cuisine."), ('Rated 4.5', 'RATED\n  I was tired and hungry and no chance of food to be had at any restaurant, but got the number of this food delivery outlet at 1:10am, I immediately ordered food. They promised to send the food a minimum of 1 hour . Even though i live nearly about 12kms away, i got the food within 50 mins flat. \nI was expecting to get the food not less then after 2 hours because after reading so many reviews of other customers i think that for some reason their views and comments are totally biased and fabricated.\nI found the food very enjoyable and tasty and from my side is total praise.\nKEEP IT UP GUYS I SHALL ALWAYS REMEMBER YOU WHEN I AM HUNGRY.'), ('Rated 1.0', 'RATED\n  Guys, whatever you do, never order from this place. I have ordered two times, both the times the experience has been horrible. The first time the food arrived after almost 2 hours and it was cold. The deliver man gave an excuse that his bike had broken down. I ordered again tonight, and had a similar experience. The delivery man arrived after an hour, but he forgot to bring the food along with him. He has gone again to get the food. I am not sure if I will get it this time.\n\nJust a warning: if you are hungry and its late into the night, do not trust this place, please'), ('Rated 1.0', "RATED\n  Guys, even if you're famished.... Do NOT order from here... Worst customer service.\nFood Sucks.. They deliver after 2.5 hours each n everytime"), ('Rated 5.0', 'RATED\n  My personal experience with Midnight hunger solutions was quite good..I was really surprised to see the quantity and quality of food provided by them.\n\nIt was around 1.30 am in the middle of the night and i was feeling damn hungry, it is  obvious that no restaurants will be opened at that time so i called my brother-in-law and got the number. I ordered 1 chicken fried rice and half chicken kabab and believe me when i say it was awesome !!  I felt as if i am enjoying the food in the restaurant.\n\nMy suggestion to those who are reading this is "Don\'t  just wonder to dial the number(+91 8088922299) just go for it "  who knows you will be pleased to write a feedback about your experience.\n\nAli you are a real saviour, special thanks to you :)'), ('Rated 1.0', "RATED\n  True they're open all night, true they deliver food in an hour, true they are very courteous, and perhaps those reasons help justify their higher than average prices... However the food doesn't. It was nothing short of horrible, tasteless and soaked in oil. They really need to step up they're cuisine."), ('Rated 4.5', 'RATED\n  I was tired and hungry and no chance of food to be had at any restaurant, but got the number of this food delivery outlet at 1:10am, I immediately ordered food. They promised to send the food a minimum of 1 hour . Even though i live nearly about 12kms away, i got the food within 50 mins flat. \nI was expecting to get the food not less then after 2 hours because after reading so many reviews of other customers i think that for some reason their views and comments are totally biased and fabricated.\nI found the food very enjoyable and tasty and from my side is total praise.\nKEEP IT UP GUYS I SHALL ALWAYS REMEMBER YOU WHEN I AM HUNGRY.'), ('Rated 1.0', 'RATED\n  Guys, whatever you do, never order from this place. I have ordered two times, both the times the experience has been horrible. The first time the food arrived after almost 2 hours and it was cold. The deliver man gave an excuse that his bike had broken down. I ordered again tonight, and had a similar experience. The delivery man arrived after an hour, but he forgot to bring the food along with him. He has gone again to get the food. I am not sure if I will get it this time.\n\nJust a warning: if you are hungry and its late into the night, do not trust this place, please'), ('Rated 1.0', "RATED\n  Guys, even if you're famished.... Do NOT order from here... Worst customer service.\nFood Sucks.. They deliver after 2.5 hours each n everytime"), ('Rated 5.0', 'RATED\n  My personal experience with Midnight hunger solutions was quite good..I was really surprised to see the quantity and quality of food provided by them.\n\nIt was around 1.30 am in the middle of the night and i was feeling damn hungry, it is  obvious that no restaurants will be opened at that time so i called my brother-in-law and got the number. I ordered 1 chicken fried rice and half chicken kabab and believe me when i say it was awesome !!  I felt as if i am enjoying the food in the restaurant.\n\nMy suggestion to those who are reading this is "Don\'t  just wonder to dial the number(+91 8088922299) just go for it "  who knows you will be pleased to write a feedback about your experience.\n\nAli you are a real saviour, special thanks to you :)'), ('Rated 1.0', "RATED\n  True they're open all night, true they deliver food in an hour, true they are very courteous, and perhaps those reasons help justify their higher than average prices... However the food doesn't. It was nothing short of horrible, tasteless and soaked in oil. They really need to step up they're cuisine."), ('Rated 4.5', 'RATED\n  I was tired and hungry and no chance of food to be had at any restaurant, but got the number of this food delivery outlet at 1:10am, I immediately ordered food. They promised to send the food a minimum of 1 hour . Even though i live nearly about 12kms away, i got the food within 50 mins flat. \nI was expecting to get the food not less then after 2 hours because after reading so many reviews of other customers i think that for some reason their views and comments are totally biased and fabricated.\nI found the food very enjoyable and tasty and from my side is total praise.\nKEEP IT UP GUYS I SHALL ALWAYS REMEMBER YOU WHEN I AM HUNGRY.'), ('Rated 1.0', 'RATED\n  Guys, whatever you do, never order from this place. I have ordered two times, both the times the experience has been horrible. The first time the food arrived after almost 2 hours and it was cold. The deliver man gave an excuse that his bike had broken down. I ordered again tonight, and had a similar experience. The delivery man arrived after an hour, but he forgot to bring the food along with him. He has gone again to get the food. I am not sure if I will get it this time.\n\nJust a warning: if you are hungry and its late into the night, do not trust this place, please'), ('Rated 1.0', "RATED\n  Guys, even if you're famished.... Do NOT order from here... Worst customer service.\nFood Sucks.. They deliver after 2.5 hours each n everytime"), ('Rated 5.0', 'RATED\n  My personal experience with Midnight hunger solutions was quite good..I was really surprised to see the quantity and quality of food provided by them.\n\nIt was around 1.30 am in the middle of the night and i was feeling damn hungry, it is  obvious that no restaurants will be opened at that time so i called my brother-in-law and got the number. I ordered 1 chicken fried rice and half chicken kabab and believe me when i say it was awesome !!  I felt as if i am enjoying the food in the restaurant.\n\nMy suggestion to those who are reading this is "Don\'t  just wonder to dial the number(+91 8088922299) just go for it "  who knows you will be pleased to write a feedback about your experience.\n\nAli you are a real saviour, special thanks to you :)'), ('Rated 1.0', "RATED\n  True they're open all night, true they deliver food in an hour, true they are very courteous, and perhaps those reasons help justify their higher than average prices... However the food doesn't. It was nothing short of horrible, tasteless and soaked in oil. They really need to step up they're cuisine."), ('Rated 4.5', 'RATED\n  I was tired and hungry and no chance of food to be had at any restaurant, but got the number of this food delivery outlet at 1:10am, I immediately ordered food. They promised to send the food a minimum of 1 hour . Even though i live nearly about 12kms away, i got the food within 50 mins flat. \nI was expecting to get the food not less then after 2 hours because after reading so many reviews of other customers i think that for some reason their views and comments are totally biased and fabricated.\nI found the food very enjoyable and tasty and from my side is total praise.\nKEEP IT UP GUYS I SHALL ALWAYS REMEMBER YOU WHEN I AM HUNGRY.'), ('Rated 1.0', 'RATED\n  Guys, whatever you do, never order from this place. I have ordered two times, both the times the experience has been horrible. The first time the food arrived after almost 2 hours and it was cold. The deliver man gave an excuse that his bike had broken down. I ordered again tonight, and had a similar experience. The delivery man arrived after an hour, but he forgot to bring the food along with him. He has gone again to get the food. I am not sure if I will get it this time.\n\nJust a warning: if you are hungry and its late into the night, do not trust this place, please'), ('Rated 1.0', "RATED\n  There is no option to rate below 1 or else I would have given that. Food tastes pathetic. Prices are too high and there is a frigging delivery charge. Do ask about it when you order(if you are ever ordering) because they won't tell you unless they come with the food for delivery. Ah yes the delivery they promise for delivering the food in 45 mins to 1 Hour max. But I ordered twice n the food was never delivered before 1 and a half hour. So its a BIG NO to this place. I would rather stay hungry at night than have food from here. Sucks Big time."), ('Rated 1.0', "RATED\n  This is an amazing place.......\nExcept for the delay in time.....\nWe order food at 1 and its 4 in the morning but no delivery..........\nAt 4:30 we get the food which is frozen, tastes like shit........\nAnd next day I go to his place and belted him like shit.....\nBut still they are the same ........\nThey never change........\nAnd ya I'm giving a star because that's the minimum I can give.... Just take it as my zero........"), ('Rated 1.0', 'RATED\n  Food was awful..no salt...tasteless...cold\n\nIt took them 1hr 45mins to deliver the order..I ordered at 00:50 hrs and parcel was delivered at 02:40 hrs. Every time i called i got the same response that the delivery guy has already left and will reach you in 5 mins...which never happened. It was way too irritating.\n\nOne more shock was they charged me 100/- extra for delivery...i somehow bargained and paid only 50/-.\n\nNow just imagine 2 hrs of wait plus paying 50/- additional delivery charges what you all expect is good food at the end of such a drama...but sorry..food was equally bad. Inspite of starving i couldnt eat even half of it.\n\nI strongly recommend not to order from here. If at all you have any other midnight meal option go for it...this place was horrible.'), ('Rated 4.0', 'RATED\n  Fast delivery,we ordered chicken kabab,paneer kadai and some chapatis all are delicious,good quantity.I am already entered in my book this restaurant because now I can give them order even after 11.00pm also!!'), ('Rated 1.0', "RATED\n  There is no option to rate below 1 or else I would have given that. Food tastes pathetic. Prices are too high and there is a frigging delivery charge. Do ask about it when you order(if you are ever ordering) because they won't tell you unless they come with the food for delivery. Ah yes the delivery they promise for delivering the food in 45 mins to 1 Hour max. But I ordered twice n the food was never delivered before 1 and a half hour. So its a BIG NO to this place. I would rather stay hungry at night than have food from here. Sucks Big time."), ('Rated 1.0', "RATED\n  This is an amazing place.......\nExcept for the delay in time.....\nWe order food at 1 and its 4 in the morning but no delivery..........\nAt 4:30 we get the food which is frozen, tastes like shit........\nAnd next day I go to his place and belted him like shit.....\nBut still they are the same ........\nThey never change........\nAnd ya I'm giving a star because that's the minimum I can give.... Just take it as my zero........"), ('Rated 1.0', 'RATED\n  Food was awful..no salt...tasteless...cold\n\nIt took them 1hr 45mins to deliver the order..I ordered at 00:50 hrs and parcel was delivered at 02:40 hrs. Every time i called i got the same response that the delivery guy has already left and will reach you in 5 mins...which never happened. It was way too irritating.\n\nOne more shock was they charged me 100/- extra for delivery...i somehow bargained and paid only 50/-.\n\nNow just imagine 2 hrs of wait plus paying 50/- additional delivery charges what you all expect is good food at the end of such a drama...but sorry..food was equally bad. Inspite of starving i couldnt eat even half of it.\n\nI strongly recommend not to order from here. If at all you have any other midnight meal option go for it...this place was horrible.'), ('Rated 4.0', 'RATED\n  Fast delivery,we ordered chicken kabab,paneer kadai and some chapatis all are delicious,good quantity.I am already entered in my book this restaurant because now I can give them order even after 11.00pm also!!'), ('Rated 1.0', "RATED\n  There is no option to rate below 1 or else I would have given that. Food tastes pathetic. Prices are too high and there is a frigging delivery charge. Do ask about it when you order(if you are ever ordering) because they won't tell you unless they come with the food for delivery. Ah yes the delivery they promise for delivering the food in 45 mins to 1 Hour max. But I ordered twice n the food was never delivered before 1 and a half hour. So its a BIG NO to this place. I would rather stay hungry at night than have food from here. Sucks Big time."), ('Rated 1.0', "RATED\n  This is an amazing place.......\nExcept for the delay in time.....\nWe order food at 1 and its 4 in the morning but no delivery..........\nAt 4:30 we get the food which is frozen, tastes like shit........\nAnd next day I go to his place and belted him like shit.....\nBut still they are the same ........\nThey never change........\nAnd ya I'm giving a star because that's the minimum I can give.... Just take it as my zero........"), ('Rated 1.0', 'RATED\n  Food was awful..no salt...tasteless...cold\n\nIt took them 1hr 45mins to deliver the order..I ordered at 00:50 hrs and parcel was delivered at 02:40 hrs. Every time i called i got the same response that the delivery guy has already left and will reach you in 5 mins...which never happened. It was way too irritating.\n\nOne more shock was they charged me 100/- extra for delivery...i somehow bargained and paid only 50/-.\n\nNow just imagine 2 hrs of wait plus paying 50/- additional delivery charges what you all expect is good food at the end of such a drama...but sorry..food was equally bad. Inspite of starving i couldnt eat even half of it.\n\nI strongly recommend not to order from here. If at all you have any other midnight meal option go for it...this place was horrible.'), ('Rated 4.0', 'RATED\n  Fast delivery,we ordered chicken kabab,paneer kadai and some chapatis all are delicious,good quantity.I am already entered in my book this restaurant because now I can give them order even after 11.00pm also!!'), ('Rated 1.0', 'RATED\n  I stay in Whitefield. They initially told me 45 minutes which I did find impossible. THey finally took 2 hrs and 45 minutes which of course was a little too much, don\'t you think? Can\'t rate the food since I didn\'t have any. I sent the delivery guy back (feel bad for him but would never have let him come all the way if they didn\'t keep telling me "We\'re getting there" "We\'re almost there").'), ('Rated 1.0', 'RATED\n  i ordered food yesterday, 2 chicken rolls, the delivery is still on the way today, should i be optimistic and wait or should i say...*#@! :)'), ('Rated 1.0', 'RATED\n  It was too late to order from a regular restaurant and tastykhana did not deliver my food. So found out this as an alternative and ordered a mutton biriyani. Food was delivered in an hour.\n\nFood was ok, but it was overly priced. May be the odd hours delivery charge.Can eat when no other food joint is open'), ('Rated 1.0', 'RATED\n  Very Bad Service,\n\ntried calling them @ 8 in the morning. No matter how many times i tried it said that the restaurant is not answering any number. In that case you should not mention it as 24/7. I am very dissatisfied with this'), ('Rated 1.0', 'RATED\n  It says midnight hunger solution .. But only for taking orders.. The food will be delivered close to early morning. The paneer and chapatis we ordered were not at all worth the price. It was hard and a painful task for your jaws to chew them in.'), ('Rated 1.0', 'RATED\n  I stay in Whitefield. They initially told me 45 minutes which I did find impossible. THey finally took 2 hrs and 45 minutes which of course was a little too much, don\'t you think? Can\'t rate the food since I didn\'t have any. I sent the delivery guy back (feel bad for him but would never have let him come all the way if they didn\'t keep telling me "We\'re getting there" "We\'re almost there").'), ('Rated 1.0', 'RATED\n  i ordered food yesterday, 2 chicken rolls, the delivery is still on the way today, should i be optimistic and wait or should i say...*#@! :)'), ('Rated 1.0', 'RATED\n  It was too late to order from a regular restaurant and tastykhana did not deliver my food. So found out this as an alternative and ordered a mutton biriyani. Food was delivered in an hour.\n\nFood was ok, but it was overly priced. May be the odd hours delivery charge.Can eat when no other food joint is open'), ('Rated 1.0', 'RATED\n  Very Bad Service,\n\ntried calling them @ 8 in the morning. No matter how many times i tried it said that the restaurant is not answering any number. In that case you should not mention it as 24/7. I am very dissatisfied with this'), ('Rated 1.0', 'RATED\n  It says midnight hunger solution .. But only for taking orders.. The food will be delivered close to early morning. The paneer and chapatis we ordered were not at all worth the price. It was hard and a painful task for your jaws to chew them in.'), ('Rated 1.0', 'RATED\n  I stay in Whitefield. They initially told me 45 minutes which I did find impossible. THey finally took 2 hrs and 45 minutes which of course was a little too much, don\'t you think? Can\'t rate the food since I didn\'t have any. I sent the delivery guy back (feel bad for him but would never have let him come all the way if they didn\'t keep telling me "We\'re getting there" "We\'re almost there").'), ('Rated 1.0', 'RATED\n  i ordered food yesterday, 2 chicken rolls, the delivery is still on the way today, should i be optimistic and wait or should i say...*#@! :)'), ('Rated 1.0', 'RATED\n  It was too late to order from a regular restaurant and tastykhana did not deliver my food. So found out this as an alternative and ordered a mutton biriyani. Food was delivered in an hour.\n\nFood was ok, but it was overly priced. May be the odd hours delivery charge.Can eat when no other food joint is open'), ('Rated 1.0', 'RATED\n  Very Bad Service,\n\ntried calling them @ 8 in the morning. No matter how many times i tried it said that the restaurant is not answering any number. In that case you should not mention it as 24/7. I am very dissatisfied with this'), ('Rated 1.0', 'RATED\n  It says midnight hunger solution .. But only for taking orders.. The food will be delivered close to early morning. The paneer and chapatis we ordered were not at all worth the price. It was hard and a painful task for your jaws to chew them in.'), ('Rated 4.5', "RATED\n  i was full hungary ordered food at 1.30 am an delivered at 2.50am it was on time realy great.\nordered chicken  Biryani  Starting from the flavor of rice texture color of Biriyani, chicken pieces masala gravy,raita everything was up to expectations.\n\nIn a city where there are a many other great Biryani makers you can't say this one is the best but they are one of the front runners adding great value to the name."), ('Rated 5.0', 'RATED\n  Woow...never thought there is a night life saver..guys if wana party at night ord food from midnight hunger solution .they are realy awesome ..my friend suggested this place but wen read reviews... i felt nt to ord .bt thought to try atleast once . chicken biryani so yummi..i realy.loved it ?.kababs so delious...etc .its tast superb ...thanks to midnight hunger team ..i realy appericait ..they were challaged an been on time .an made our party awesome ....every time when ever we party or been with friends we are gona ord food frm u guys....keep it up maintaim the same quaility..:-)'), ('Rated 1.0', 'RATED\n  worst experience ever.. ordered food at 2:30.. it has still not arrived at 5.'), ('Rated 1.0', 'RATED\n  Pathetic and horrible..u want to destroy ur midnight party..order from this hotel. I ordered at 2 am and got delivered at 4:15 am. The taste was yukk..the worst rolls and Manchurian I ever ate.and they charge 120 rs for delivery..!! Never ever order unless ur guest is ur secret enemy..'), ('Rated 1.0', "RATED\n  They committed to an hour for delivery, and despite repeated reminders, they took an hour and a half. Every time we called them, they just said that it'll be delivered in 5-10 minutes - but it took far longer.\n\nThis is what happens when every Tom, Dick and Harry starts up without an idea of how to run a business. Not to discourage such people, but do your homework first.\n\nThe food, needless to say, was as pathetic as any other late night delivery service I have tried in Bangalore. I am surprised I didn't end up with food poisoning.\n\nIf you value your patience and your nerves, do not get them tested by these guys. DO NOT ORDER from here."), ('Rated 4.5', "RATED\n  i was full hungary ordered food at 1.30 am an delivered at 2.50am it was on time realy great.\nordered chicken  Biryani  Starting from the flavor of rice texture color of Biriyani, chicken pieces masala gravy,raita everything was up to expectations.\n\nIn a city where there are a many other great Biryani makers you can't say this one is the best but they are one of the front runners adding great value to the name."), ('Rated 5.0', 'RATED\n  Woow...never thought there is a night life saver..guys if wana party at night ord food from midnight hunger solution .they are realy awesome ..my friend suggested this place but wen read reviews... i felt nt to ord .bt thought to try atleast once . chicken biryani so yummi..i realy.loved it ?.kababs so delious...etc .its tast superb ...thanks to midnight hunger team ..i realy appericait ..they were challaged an been on time .an made our party awesome ....every time when ever we party or been with friends we are gona ord food frm u guys....keep it up maintaim the same quaility..:-)'), ('Rated 1.0', 'RATED\n  worst experience ever.. ordered food at 2:30.. it has still not arrived at 5.'), ('Rated 1.0', 'RATED\n  Pathetic and horrible..u want to destroy ur midnight party..order from this hotel. I ordered at 2 am and got delivered at 4:15 am. The taste was yukk..the worst rolls and Manchurian I ever ate.and they charge 120 rs for delivery..!! Never ever order unless ur guest is ur secret enemy..'), ('Rated 1.0', "RATED\n  They committed to an hour for delivery, and despite repeated reminders, they took an hour and a half. Every time we called them, they just said that it'll be delivered in 5-10 minutes - but it took far longer.\n\nThis is what happens when every Tom, Dick and Harry starts up without an idea of how to run a business. Not to discourage such people, but do your homework first.\n\nThe food, needless to say, was as pathetic as any other late night delivery service I have tried in Bangalore. I am surprised I didn't end up with food poisoning.\n\nIf you value your patience and your nerves, do not get them tested by these guys. DO NOT ORDER from here."), ('Rated 4.5', "RATED\n  i was full hungary ordered food at 1.30 am an delivered at 2.50am it was on time realy great.\nordered chicken  Biryani  Starting from the flavor of rice texture color of Biriyani, chicken pieces masala gravy,raita everything was up to expectations.\n\nIn a city where there are a many other great Biryani makers you can't say this one is the best but they are one of the front runners adding great value to the name."), ('Rated 5.0', 'RATED\n  Woow...never thought there is a night life saver..guys if wana party at night ord food from midnight hunger solution .they are realy awesome ..my friend suggested this place but wen read reviews... i felt nt to ord .bt thought to try atleast once . chicken biryani so yummi..i realy.loved it ?.kababs so delious...etc .its tast superb ...thanks to midnight hunger team ..i realy appericait ..they were challaged an been on time .an made our party awesome ....every time when ever we party or been with friends we are gona ord food frm u guys....keep it up maintaim the same quaility..:-)'), ('Rated 1.0', 'RATED\n  worst experience ever.. ordered food at 2:30.. it has still not arrived at 5.'), ('Rated 1.0', 'RATED\n  Pathetic and horrible..u want to destroy ur midnight party..order from this hotel. I ordered at 2 am and got delivered at 4:15 am. The taste was yukk..the worst rolls and Manchurian I ever ate.and they charge 120 rs for delivery..!! Never ever order unless ur guest is ur secret enemy..'), ('Rated 1.0', "RATED\n  They committed to an hour for delivery, and despite repeated reminders, they took an hour and a half. Every time we called them, they just said that it'll be delivered in 5-10 minutes - but it took far longer.\n\nThis is what happens when every Tom, Dick and Harry starts up without an idea of how to run a business. Not to discourage such people, but do your homework first.\n\nThe food, needless to say, was as pathetic as any other late night delivery service I have tried in Bangalore. I am surprised I didn't end up with food poisoning.\n\nIf you value your patience and your nerves, do not get them tested by these guys. DO NOT ORDER from here."), ('Rated 1.0', "RATED\n  We ordered food at 1:00 a.m. After repeated calls, they finally delivered our food at 4:30 a.m. The rolls were soaked in oil and basically inedible. The noodles were rubbery. The prices they charge are higher than what's on the menu. Never ordering from here again."), ('Rated 1.0', 'RATED\n  Pathetic food... The Kerala parotha was half burnt and curry was tasteless n too spicy.'), ('Rated 3.5', "RATED\n  This place is definitely a life saver when looking to order food at the wee hrs.\n\nWe ordered 16 Phulkas (4 plain and rest butter), Paneer Butter Masala, Chicken Kadai, Raithas at around 230 am from Marathahalli and the food arrived at 4 am from Indiranagar and the bill was more on the expensive side with Plain Phulkas for 20/pc and Butter ones for 25/pc and delivery charges around 120rs. But beggars can't be choosers and I honestly can't complain about the food, the paneer melted in the mouth, was delicious. Phulkas were soft and huge. All in all real decent food at that hr.\n\nThis place is definitely going on my speed dial and will be 'the' place to order from for any midnight hunger pangs."), ('Rated 1.0', 'RATED\n  I usually don\'t write reviews, this time I had to.\n1. Always late, and that really sucks when you\'re hungry.\n2. Food is not worth recommending. If you have Maggi, eat Maggi.\n3. Whatever drink you order will be "available". But you\'ll get Pepsi(which will be as hot as your biryani), so kindly deal with it.\n4. Sometimes you may get what you did not order.\n\nHowever, one good thing that I can say is that they do make the delivery the same night.\n\nI have ordered twice from here, disappointed both times. \nWon\'t order anymore, for sure.'), ('Rated 3.0', "RATED\n  The best part - they serve when no one else does; the parathas are really big (4 would satiate a really hungry soul); the gravy(chicken) is not bad at all- that's more than enough for the number of bests.The sad part - the delivery is not time bound; the quantity is not enough for sure; plus the 100 rupees on the home delivery, I mean, man you are already yielding way more than the food's worth.But then, thank you for the 24-hour service!!"), ('Rated 1.0', "RATED\n  We ordered food at 1:00 a.m. After repeated calls, they finally delivered our food at 4:30 a.m. The rolls were soaked in oil and basically inedible. The noodles were rubbery. The prices they charge are higher than what's on the menu. Never ordering from here again."), ('Rated 1.0', 'RATED\n  Pathetic food... The Kerala parotha was half burnt and curry was tasteless n too spicy.'), ('Rated 3.5', "RATED\n  This place is definitely a life saver when looking to order food at the wee hrs.\n\nWe ordered 16 Phulkas (4 plain and rest butter), Paneer Butter Masala, Chicken Kadai, Raithas at around 230 am from Marathahalli and the food arrived at 4 am from Indiranagar and the bill was more on the expensive side with Plain Phulkas for 20/pc and Butter ones for 25/pc and delivery charges around 120rs. But beggars can't be choosers and I honestly can't complain about the food, the paneer melted in the mouth, was delicious. Phulkas were soft and huge. All in all real decent food at that hr.\n\nThis place is definitely going on my speed dial and will be 'the' place to order from for any midnight hunger pangs."), ('Rated 1.0', 'RATED\n  I usually don\'t write reviews, this time I had to.\n1. Always late, and that really sucks when you\'re hungry.\n2. Food is not worth recommending. If you have Maggi, eat Maggi.\n3. Whatever drink you order will be "available". But you\'ll get Pepsi(which will be as hot as your biryani), so kindly deal with it.\n4. Sometimes you may get what you did not order.\n\nHowever, one good thing that I can say is that they do make the delivery the same night.\n\nI have ordered twice from here, disappointed both times. \nWon\'t order anymore, for sure.'), ('Rated 3.0', "RATED\n  The best part - they serve when no one else does; the parathas are really big (4 would satiate a really hungry soul); the gravy(chicken) is not bad at all- that's more than enough for the number of bests.The sad part - the delivery is not time bound; the quantity is not enough for sure; plus the 100 rupees on the home delivery, I mean, man you are already yielding way more than the food's worth.But then, thank you for the 24-hour service!!"), ('Rated 1.0', "RATED\n  We ordered food at 1:00 a.m. After repeated calls, they finally delivered our food at 4:30 a.m. The rolls were soaked in oil and basically inedible. The noodles were rubbery. The prices they charge are higher than what's on the menu. Never ordering from here again."), ('Rated 1.0', 'RATED\n  Pathetic food... The Kerala parotha was half burnt and curry was tasteless n too spicy.'), ('Rated 3.5', "RATED\n  This place is definitely a life saver when looking to order food at the wee hrs.\n\nWe ordered 16 Phulkas (4 plain and rest butter), Paneer Butter Masala, Chicken Kadai, Raithas at around 230 am from Marathahalli and the food arrived at 4 am from Indiranagar and the bill was more on the expensive side with Plain Phulkas for 20/pc and Butter ones for 25/pc and delivery charges around 120rs. But beggars can't be choosers and I honestly can't complain about the food, the paneer melted in the mouth, was delicious. Phulkas were soft and huge. All in all real decent food at that hr.\n\nThis place is definitely going on my speed dial and will be 'the' place to order from for any midnight hunger pangs."), ('Rated 1.0', 'RATED\n  I usually don\'t write reviews, this time I had to.\n1. Always late, and that really sucks when you\'re hungry.\n2. Food is not worth recommending. If you have Maggi, eat Maggi.\n3. Whatever drink you order will be "available". But you\'ll get Pepsi(which will be as hot as your biryani), so kindly deal with it.\n4. Sometimes you may get what you did not order.\n\nHowever, one good thing that I can say is that they do make the delivery the same night.\n\nI have ordered twice from here, disappointed both times. \nWon\'t order anymore, for sure.'), ('Rated 3.0', "RATED\n  The best part - they serve when no one else does; the parathas are really big (4 would satiate a really hungry soul); the gravy(chicken) is not bad at all- that's more than enough for the number of bests.The sad part - the delivery is not time bound; the quantity is not enough for sure; plus the 100 rupees on the home delivery, I mean, man you are already yielding way more than the food's worth.But then, thank you for the 24-hour service!!"), ('Rated 1.0', "RATED\n  Can only say that they S*** 2:30 mins no food. . No freaking courtesy to call.. They don't know the address but he says he will Come in 15 mins people just don't try.. isn't there a rating below 1?"), ('Rated 1.0', 'RATED\n  Wow..!! I really wonder how come people gave this place good reviews.\nThis is one of the worst places in Bangalore to order food at late night or maybe even anytime. I ordered 2 chicken Biryani paying 150 each.. TRUST ME when the food arrived I was in shock...!! Its was a aluminum packing to the worst, rice was stale with hardly 1 piece of chicken and the best part is when I called them to check they were sure that it was chicken Biryani...!!\nI felt like eating Wangibath with Chicken...!!\nThis place is such a waste to buy food.. They just make it expensive as there is very few to deliver food at these times...'), ('Rated 1.0', 'RATED\n  Ordered on a Sunday late night/Monday early morning 1.15 AM, whilst my stay in KR Puram, they took the order and promised to deliver soon. We waited till 2.30 AM and were very hungry. Called to find that the delivery person has already started and got the number of that guy. When called his number was busy for half an hour. After which he was stating he has almost reached, near the place and about to reach for the next 30 mins. We lost patience and cancelled the order. Do you know when the delivery guy called us back???? 3.30 AM to deliver it. damn.... never going to try this out. heard from a friend that the food is also not good.'), ('Rated 1.0', 'RATED\n  This is the worst place one can ever expect. They neither deliver in time nor provide proper responses to the customers'), ('Rated 1.0', "RATED\n  Few people got there chance too order something from here... But they didn't even picked my call....."), ('Rated 1.0', "RATED\n  Can only say that they S*** 2:30 mins no food. . No freaking courtesy to call.. They don't know the address but he says he will Come in 15 mins people just don't try.. isn't there a rating below 1?"), ('Rated 1.0', 'RATED\n  Wow..!! I really wonder how come people gave this place good reviews.\nThis is one of the worst places in Bangalore to order food at late night or maybe even anytime. I ordered 2 chicken Biryani paying 150 each.. TRUST ME when the food arrived I was in shock...!! Its was a aluminum packing to the worst, rice was stale with hardly 1 piece of chicken and the best part is when I called them to check they were sure that it was chicken Biryani...!!\nI felt like eating Wangibath with Chicken...!!\nThis place is such a waste to buy food.. They just make it expensive as there is very few to deliver food at these times...'), ('Rated 1.0', 'RATED\n  Ordered on a Sunday late night/Monday early morning 1.15 AM, whilst my stay in KR Puram, they took the order and promised to deliver soon. We waited till 2.30 AM and were very hungry. Called to find that the delivery person has already started and got the number of that guy. When called his number was busy for half an hour. After which he was stating he has almost reached, near the place and about to reach for the next 30 mins. We lost patience and cancelled the order. Do you know when the delivery guy called us back???? 3.30 AM to deliver it. damn.... never going to try this out. heard from a friend that the food is also not good.'), ('Rated 1.0', 'RATED\n  This is the worst place one can ever expect. They neither deliver in time nor provide proper responses to the customers'), ('Rated 1.0', "RATED\n  Few people got there chance too order something from here... But they didn't even picked my call....."), ('Rated 1.0', "RATED\n  Can only say that they S*** 2:30 mins no food. . No freaking courtesy to call.. They don't know the address but he says he will Come in 15 mins people just don't try.. isn't there a rating below 1?"), ('Rated 1.0', 'RATED\n  Wow..!! I really wonder how come people gave this place good reviews.\nThis is one of the worst places in Bangalore to order food at late night or maybe even anytime. I ordered 2 chicken Biryani paying 150 each.. TRUST ME when the food arrived I was in shock...!! Its was a aluminum packing to the worst, rice was stale with hardly 1 piece of chicken and the best part is when I called them to check they were sure that it was chicken Biryani...!!\nI felt like eating Wangibath with Chicken...!!\nThis place is such a waste to buy food.. They just make it expensive as there is very few to deliver food at these times...'), ('Rated 1.0', 'RATED\n  Ordered on a Sunday late night/Monday early morning 1.15 AM, whilst my stay in KR Puram, they took the order and promised to deliver soon. We waited till 2.30 AM and were very hungry. Called to find that the delivery person has already started and got the number of that guy. When called his number was busy for half an hour. After which he was stating he has almost reached, near the place and about to reach for the next 30 mins. We lost patience and cancelled the order. Do you know when the delivery guy called us back???? 3.30 AM to deliver it. damn.... never going to try this out. heard from a friend that the food is also not good.'), ('Rated 1.0', 'RATED\n  This is the worst place one can ever expect. They neither deliver in time nor provide proper responses to the customers'), ('Rated 1.0', "RATED\n  Few people got there chance too order something from here... But they didn't even picked my call....."), ('Rated 1.5', "RATED\n  - Horrible Service. Took them 1 hour and 35 minutes to deliver the order for a place hardly 3.2kms from their location. We were not informed about the potential delay ever during the first call and after that.\n\n- Wasn't informed about the Rs 100 Delivery charge during the call. I understand that there would be some delivery charge, but the amount wasn't conveyed on the phone.\n\n- Took 4 phone calls to confirm if they are even delivering the order and whether they understood our address!\n\n- While two of the three food items were fine, 1 was soggy.\n\nVery disappointing. No value for money"), ('Rated 4.5', 'RATED\n  This place is really the perfect solution for all your midnight hunger problems/cravings.\nHad ordered the chicken roll from the place at around 1 am,the order showed up within 15 minutes which itself was a delight.\nThe roll was nice and big filled with succulent chunks of meat,and most importantly was fresh and hot.\nSo whether you are stuck at the office working late or just lazing around at home craving for a midnight snack, rest assured Midnight Hunger Solutions would supply you with food that will make you happy.'), ('Rated 3.0', 'RATED\n  Makes sense if you are REALLY hungry late at night. But the service is slow and the food is just acceptable. Except for the timing, it has nothing going for it.'), ('Rated 1.0', 'RATED\n  No words to describe how pathetic their home delivery service is. Took about 2 hours for the order to come in. Id rather die of hunger than order from this sad excuse of a place'), ('Rated 1.5', "RATED\n  - Horrible Service. Took them 1 hour and 35 minutes to deliver the order for a place hardly 3.2kms from their location. We were not informed about the potential delay ever during the first call and after that.\n\n- Wasn't informed about the Rs 100 Delivery charge during the call. I understand that there would be some delivery charge, but the amount wasn't conveyed on the phone.\n\n- Took 4 phone calls to confirm if they are even delivering the order and whether they understood our address!\n\n- While two of the three food items were fine, 1 was soggy.\n\nVery disappointing. No value for money"), ('Rated 4.5', 'RATED\n  This place is really the perfect solution for all your midnight hunger problems/cravings.\nHad ordered the chicken roll from the place at around 1 am,the order showed up within 15 minutes which itself was a delight.\nThe roll was nice and big filled with succulent chunks of meat,and most importantly was fresh and hot.\nSo whether you are stuck at the office working late or just lazing around at home craving for a midnight snack, rest assured Midnight Hunger Solutions would supply you with food that will make you happy.'), ('Rated 3.0', 'RATED\n  Makes sense if you are REALLY hungry late at night. But the service is slow and the food is just acceptable. Except for the timing, it has nothing going for it.'), ('Rated 1.0', 'RATED\n  No words to describe how pathetic their home delivery service is. Took about 2 hours for the order to come in. Id rather die of hunger than order from this sad excuse of a place'), ('Rated 1.5', "RATED\n  - Horrible Service. Took them 1 hour and 35 minutes to deliver the order for a place hardly 3.2kms from their location. We were not informed about the potential delay ever during the first call and after that.\n\n- Wasn't informed about the Rs 100 Delivery charge during the call. I understand that there would be some delivery charge, but the amount wasn't conveyed on the phone.\n\n- Took 4 phone calls to confirm if they are even delivering the order and whether they understood our address!\n\n- While two of the three food items were fine, 1 was soggy.\n\nVery disappointing. No value for money"), ('Rated 4.5', 'RATED\n  This place is really the perfect solution for all your midnight hunger problems/cravings.\nHad ordered the chicken roll from the place at around 1 am,the order showed up within 15 minutes which itself was a delight.\nThe roll was nice and big filled with succulent chunks of meat,and most importantly was fresh and hot.\nSo whether you are stuck at the office working late or just lazing around at home craving for a midnight snack, rest assured Midnight Hunger Solutions would supply you with food that will make you happy.'), ('Rated 3.0', 'RATED\n  Makes sense if you are REALLY hungry late at night. But the service is slow and the food is just acceptable. Except for the timing, it has nothing going for it.'), ('Rated 1.0', 'RATED\n  No words to describe how pathetic their home delivery service is. Took about 2 hours for the order to come in. Id rather die of hunger than order from this sad excuse of a place'), ('Rated 1.0', "RATED\n  I would have said something about their food except they didn't give me a chance to taste it. After reading some of the reviews here, I decided to give them a try while watching the late night football game. I ordered a veg gravy and some parathas at 1:00am and was promised that it would reach in 45mins. At 2:30am, we still hadn't received the food and they did not pick up our repeated calls. We finally got through to them at 3:00am and the food had still not left. We finally ended up cancelling the order. Horrible service. What annoyed me the most was that they had the audacity to ignore calls after not delivering the food! Definitely not trying here again,"), ('Rated 2.5', "RATED\n  Food Quality was decent and not really good, they said that the food you ordered will be delivered in 45 minutes but it took more than 90 minutes. I had ordered 12 different food items and i was delivered Paneer Manchurian in place of Chicken Kabab. I had asked them to get the card swiping machine which the delivery person missed to get it, also i had asked them to write the item names on the package as there were Veg & Non-Veg which was also not mentioned (I literally had to open every roll and check if it's Chicken or Veg). Did call them and mentioned about what all they have missed, they said they lost the permanent marker :( :( and a sorry. I normally work in night shifts and we are large numbers at work, i know they are Savior especially in the middle of the night but would prefer a better service and quality."), ('Rated 1.0', "RATED\n  I would have said something about their food except they didn't give me a chance to taste it. After reading some of the reviews here, I decided to give them a try while watching the late night football game. I ordered a veg gravy and some parathas at 1:00am and was promised that it would reach in 45mins. At 2:30am, we still hadn't received the food and they did not pick up our repeated calls. We finally got through to them at 3:00am and the food had still not left. We finally ended up cancelling the order. Horrible service. What annoyed me the most was that they had the audacity to ignore calls after not delivering the food! Definitely not trying here again,"), ('Rated 2.5', "RATED\n  Food Quality was decent and not really good, they said that the food you ordered will be delivered in 45 minutes but it took more than 90 minutes. I had ordered 12 different food items and i was delivered Paneer Manchurian in place of Chicken Kabab. I had asked them to get the card swiping machine which the delivery person missed to get it, also i had asked them to write the item names on the package as there were Veg & Non-Veg which was also not mentioned (I literally had to open every roll and check if it's Chicken or Veg). Did call them and mentioned about what all they have missed, they said they lost the permanent marker :( :( and a sorry. I normally work in night shifts and we are large numbers at work, i know they are Savior especially in the middle of the night but would prefer a better service and quality."), ('Rated 1.0', "RATED\n  I would have said something about their food except they didn't give me a chance to taste it. After reading some of the reviews here, I decided to give them a try while watching the late night football game. I ordered a veg gravy and some parathas at 1:00am and was promised that it would reach in 45mins. At 2:30am, we still hadn't received the food and they did not pick up our repeated calls. We finally got through to them at 3:00am and the food had still not left. We finally ended up cancelling the order. Horrible service. What annoyed me the most was that they had the audacity to ignore calls after not delivering the food! Definitely not trying here again,"), ('Rated 2.5', "RATED\n  Food Quality was decent and not really good, they said that the food you ordered will be delivered in 45 minutes but it took more than 90 minutes. I had ordered 12 different food items and i was delivered Paneer Manchurian in place of Chicken Kabab. I had asked them to get the card swiping machine which the delivery person missed to get it, also i had asked them to write the item names on the package as there were Veg & Non-Veg which was also not mentioned (I literally had to open every roll and check if it's Chicken or Veg). Did call them and mentioned about what all they have missed, they said they lost the permanent marker :( :( and a sorry. I normally work in night shifts and we are large numbers at work, i know they are Savior especially in the middle of the night but would prefer a better service and quality."), ('Rated 1.0', "RATED\n  I would have said something about their food except they didn't give me a chance to taste it. After reading some of the reviews here, I decided to give them a try while watching the late night football game. I ordered a veg gravy and some parathas at 1:00am and was promised that it would reach in 45mins. At 2:30am, we still hadn't received the food and they did not pick up our repeated calls. We finally got through to them at 3:00am and the food had still not left. We finally ended up cancelling the order. Horrible service. What annoyed me the most was that they had the audacity to ignore calls after not delivering the food! Definitely not trying here again,"), ('Rated 2.5', "RATED\n  Food Quality was decent and not really good, they said that the food you ordered will be delivered in 45 minutes but it took more than 90 minutes. I had ordered 12 different food items and i was delivered Paneer Manchurian in place of Chicken Kabab. I had asked them to get the card swiping machine which the delivery person missed to get it, also i had asked them to write the item names on the package as there were Veg & Non-Veg which was also not mentioned (I literally had to open every roll and check if it's Chicken or Veg). Did call them and mentioned about what all they have missed, they said they lost the permanent marker :( :( and a sorry. I normally work in night shifts and we are large numbers at work, i know they are Savior especially in the middle of the night but would prefer a better service and quality."), ('Rated 1.0', 'RATED\n  Pathetic service. I ordered food and I got the delivery after 2 hrs. When I called them 1 hr after placing the order, the manager at the other end lied to me saying "Your order has been dispatched" (verbatim) while my order arrived after 1hr of my call.\nI will never try their service again'), ('Rated 1.0', "RATED\n  Sheer disappointment. Neither will i ever order again nor will recommend anyone around to even think of ordering. They would take the order when you're hungry and deliver it only by the time you probably would have completed half your sleep. And yes, that when they charge 100 Rs. Flat purely for delivery. People: make the deliveries at least worth that. To top all of it, there will not be a slightest of sense of apology on their face. In all, not worth the price nor the wait."), ('Rated 3.5', "RATED\n  An absolute savior in desperate times.\nHave ordered multiple times, never been disappointed with the quality/quantity [probably 'cause I was drunk :P]\nThey delivered once in pouring rain at 2 A.M!!\nTotally reliable!"), ('Rated 4.0', 'RATED\n  Great food at decent costs. The time taken to deliver at 1 am was slightly more than expected but the overall experience really nice!'), ('Rated 1.0', 'RATED\n  Pathetic service. I ordered food and I got the delivery after 2 hrs. When I called them 1 hr after placing the order, the manager at the other end lied to me saying "Your order has been dispatched" (verbatim) while my order arrived after 1hr of my call.\nI will never try their service again'), ('Rated 1.0', "RATED\n  Sheer disappointment. Neither will i ever order again nor will recommend anyone around to even think of ordering. They would take the order when you're hungry and deliver it only by the time you probably would have completed half your sleep. And yes, that when they charge 100 Rs. Flat purely for delivery. People: make the deliveries at least worth that. To top all of it, there will not be a slightest of sense of apology on their face. In all, not worth the price nor the wait."), ('Rated 3.5', "RATED\n  An absolute savior in desperate times.\nHave ordered multiple times, never been disappointed with the quality/quantity [probably 'cause I was drunk :P]\nThey delivered once in pouring rain at 2 A.M!!\nTotally reliable!"), ('Rated 4.0', 'RATED\n  Great food at decent costs. The time taken to deliver at 1 am was slightly more than expected but the overall experience really nice!'), ('Rated 1.0', 'RATED\n  Pathetic service. I ordered food and I got the delivery after 2 hrs. When I called them 1 hr after placing the order, the manager at the other end lied to me saying "Your order has been dispatched" (verbatim) while my order arrived after 1hr of my call.\nI will never try their service again'), ('Rated 1.0', "RATED\n  Sheer disappointment. Neither will i ever order again nor will recommend anyone around to even think of ordering. They would take the order when you're hungry and deliver it only by the time you probably would have completed half your sleep. And yes, that when they charge 100 Rs. Flat purely for delivery. People: make the deliveries at least worth that. To top all of it, there will not be a slightest of sense of apology on their face. In all, not worth the price nor the wait."), ('Rated 3.5', "RATED\n  An absolute savior in desperate times.\nHave ordered multiple times, never been disappointed with the quality/quantity [probably 'cause I was drunk :P]\nThey delivered once in pouring rain at 2 A.M!!\nTotally reliable!"), ('Rated 4.0', 'RATED\n  Great food at decent costs. The time taken to deliver at 1 am was slightly more than expected but the overall experience really nice!'), ('Rated 1.0', 'RATED\n  Pathetic service. I ordered food and I got the delivery after 2 hrs. When I called them 1 hr after placing the order, the manager at the other end lied to me saying "Your order has been dispatched" (verbatim) while my order arrived after 1hr of my call.\nI will never try their service again'), ('Rated 1.0', "RATED\n  Sheer disappointment. Neither will i ever order again nor will recommend anyone around to even think of ordering. They would take the order when you're hungry and deliver it only by the time you probably would have completed half your sleep. And yes, that when they charge 100 Rs. Flat purely for delivery. People: make the deliveries at least worth that. To top all of it, there will not be a slightest of sense of apology on their face. In all, not worth the price nor the wait."), ('Rated 3.5', "RATED\n  An absolute savior in desperate times.\nHave ordered multiple times, never been disappointed with the quality/quantity [probably 'cause I was drunk :P]\nThey delivered once in pouring rain at 2 A.M!!\nTotally reliable!"), ('Rated 4.0', 'RATED\n  Great food at decent costs. The time taken to deliver at 1 am was slightly more than expected but the overall experience really nice!'), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.5', "RATED\n  The worst food decision I ever made!\nThe kebabs were cold and had a bad oil stench, plus a sliver of another item they had cooked.\nThe 'punjabi chicken' didn't taste fresh at all.\nTo add to it, 'COKE' became 'MOUNTAIN DEW' by the time it reached me!\nI'd rather die of hunger or a food craving than call midnight hunger solutions because this ain't a solution, this is a PROBLEM!\n#pissed #yuck"), ('Rated 1.0', "RATED\n  I ordered for some food at 02:55. Waited for about an hour, and called the restaurant a few times. However, there was no answer.\n\nAt 04:40, someone calls me up to confirm my address. I cancelled the order.\n\nI do not know how the food is, but no matter how good it might be, I'm never ordering from this place again, and I recommend you do the same."), ('Rated 4.5', 'RATED\n  This place is a Savior ,past the deadlines! Believe me it is worth every penny you pay for the food especially in the middle of the night .Have been ordering from this place since a month or so.Have tasted their noodles,quite yum! the Gobi Manchurian and fried rice is delicious too.The other day had ordered a kadhai paneer and chicken tikka with some biryani,jeera rice the food was awesome...eating such delicious food at the comfort of your place at the wee hours ,makes it better.The chapattis here are not that good though.The quantity is really good,the price is pretty decent ,the rs 100 extra for the delivery can pinch but for the many starving souls who are fed up of the food in empire ,it is any day a better option!Cheers!'), ('Rated 1.0', 'RATED\n  Never ever order from this place.. They take ages to deliver d food.'), ('Rated 1.0', "RATED\n  Overly priced , delivery charge of 100 bucks which isn't mentioned anywhere , all of their food is unbearably spicy and not at all worth it. + They make their own modifications to your order sometimes and you don't get what you asked for - worst part is you can't do anything about it as them ( even delivery guys ) picking up their phone is nothing short of a miracle."), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Never order from here.. We placed an order at 1.30am and it came to us at 5 in the morning... Every time we called they replied that the order will be reaching in 15 to 20 mins...\nThey do not even provide spoons or forks or disposable plates with their tasteless food.\nTotally useless place to order from.\n\n----- 16 Mar, 2014 -----\nOne and half hour.. Still counting... No food.. Poor service'), ('Rated 1.0', 'RATED\n  The most horrible place to order from. ALWAYS late. Bad food. Never order from here and waste your money!'), ('Rated 2.5', "RATED\n  The food is decent but the quantity is not really good. Also, they will tell you that the food will reach in 45 minutes but the food doesn't reach earlier that 1.5 hours. They also have a delivery charge of 100 rupees in case you didn't know. It's good enough for midnight food but would prefer a better service."), ('Rated 2.5', 'RATED\n  its food solution i order it during my night shift food was great but service of delivery was to be looked upon it took 3 hrs to reach only 1 km but food was worth waithing for'), ('Rated 1.0', 'RATED\n  Im still waiting for delivery after 1hr 15mins now. If you are hubgry they are not the solution.'), ('Rated 5.0', 'RATED\n  I have been ordering from Midnight Hunger Since 2012, and they have been amazing, good customer service, amazing food, and never the less these guts started with 24 hour food home delivery service in Bangalore.\n\nThough they are a little late at times, its okay as most of the times they were before time too...\n\nI would highly recommend their Lip smacking briyani and mutton pepper fry! its just amazing.')]    1
Paneer crust Burger is tasty, all veggie ppl shuld try.'), ('Rated 1.0', 'RATED\n  Waste of money.'), ('Rated 2.0', 'RATED\n  ordered online.. nothing much to say\nnot worthy'), ('Rated 2.0', 'RATED\n  Some strange oil odour .. not good quality may be'), ('Rated 2.0', 'RATED\n  delivery were very very late'), ('Rated 1.0', 'RATED\n  worst service ever'), ('Rated 5.0', 'RATED\n  good'), ('Rated 1.0', "RATED\n  Order was delivered very late.. delivery guy attitude was too worse..\n\nzomato customer care and helpless and restaurant won't receive the calls to check by ourself"), ('Rated 1.0', 'RATED\n  Terrible.'), ('Rated 2.5', "RATED\n  The quality has changed. Before when I used to have here it was really good but later don't know what happened. Taste has changed. Once ordered popcorn it was burnt."), ('Rated 5.0', 'RATED\n  A FIVE is what I will give M&E for their prompt service and for delivering hot food n snacks. M&E Banaswadi has always been a life saver when other restaurants have been closed or have been unavailable for various reasons.'), ('Rated 4.5', 'RATED\n  Great tasting fried food that gives the likes of KFC and Popeye\'s a real run for their money. The food is also league\'s ahead of Five Star Chicken and any other joint that makes "fried chicken". The "me chicken burger" could have easily been mistaken for a kfc zinger, if not better. The chicken was fresh and the batter was crunchy and light on the palate. The burgers were topped with what looked like freshly prepared ingredients, including a delicious mayo-based sauce and lettuce. The cherry on the icing is their courteous customer care executive (called to confirm my order since it was the first time), and prompt delivery. The varied and well-priced menu have just made M&E my new favourite fast food joint!'), ('Rated 3.5', 'RATED\n  This is one of the places that I eat most often owing to how close it is to my house. The food has been good consistently and the portions are also fairly large. The staff is friendly and service generally quick.\nIt is a fine place to just pick up some food on the way from work as the value for money is rather good.\nFood - 3.5/5\nValue for Money - 4.5/5\nService - 3.5/5'), ('Rated 1.5', 'RATED\n  I had very poor experience with this branch. I placed an online order via Zomato & the restaurant accepted it. After an hour, I got a call from the Meat and Eat Banaswadi branch informing me that they do not have a delivery boy. Needless to say, this was extremely frustrating to find out when I should have been eating my delivered lunch. I immediately called the number listed for Meat and Eat in Zomato & the customer care person told me that the order was on its way. Clearly, there was a communication gap between customer care & the branch. This set off 15 minutes of back and forth calls between Meat and Eat customer care, the branch & myself with no resolution in sight. I decided to take matters into my own hands & drove 20 minutes to the branch. After reaching, I demanded to be compensated & the branch did add an item to my order. But other than this, it was a very negative experience. I do not plan on going back!'), ('Rated 3.0', 'RATED\n  Food was decent but took a long time to reach abt 30 min late, enjoyed the burger and chicken with some fries and 250 ml coke.\nGood economic option if delivery can speed up'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 3.5', 'RATED\n  Ordered in through the Zomato App and found these guys to be pretty decent. Good on quantity with their burgers and generous with the portion of fries while adding a beverage as well making it a complete meal. The best thing being that they are very affordable. Loved the twin burger special which is a double patty burger one patty being the KFC variety and the other the normal variety. Love the innovation.\n\nCheers,'), ('Rated 5.0', 'RATED\n  Value for money, ordered Me Deal 09 which had a king size of chicken burger, 400 ml Pepsi and French fries inculed,@ all just for Rs180. Better than KFC or Burger King. Taste was also good. Would recommend my friends to order from here, rather than KFC or Burger King.'), ('Rated 3.5', 'RATED\n  this place is similar to american bite and 5 star chicken though the food here is slightly better in my opinion. the potato wedges were really good and the burgers were similar to KFC. the food is relatively cheaper compared to KFC so its good if you  need to get a bucket of fried chicken with limited cash.'), ('Rated 3.5', 'RATED\n  The fried chicken here has accompanied my beers more than once. Such price, much taste. Really liked the crispiness of that sweet sweet fried chicken! Yum. Of late the quality of the food has been decreasing. My favorite Indian Fried Chicken was cold the other day. Really cold. Heartbreaks.'), ('Rated 2.0', 'RATED\n  Worst experience I had here,I ordered for some jumbo combo pack. In that they have given a Biryani which was stinking. When i complaint about the food they changed it,but I will never gonna visit.\nAmbiance 3/5\nService 2/5\nCost 4/5\nStaff 2.5/5\nFood 2/5\nTaste 1/5\nQuality 1/5'), ('Rated 3.0', "RATED\n  Another American fast food place like kfc or McDonald's , meat and eat has a nice catch to its name. I took a home delivery using tiny owl. I had ordered a twin chicken burger meal and potato wedges to go along. The burger was very average. Much similar to a zinger in kfc. Even the fries and wedges were average. However got the entire thing for just above 200 rupees. So overall on the cheaper side, maybe a place to visit when u r out of money or need a quick bite.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
We went there on Valentine's day evening, so they had curated a three course menu specially for this. However we didn't opted for that, but rather picked from the menu.\nWe started off with their broccoli soup with almond flakes and Thessaloniki Greek salad.\nThe broccoli soup is an all time favourite of mine from Toscano, and even the salad didn't disappoint us.\nFor the main course we ordered Fettuccine con pollo.\nFinally ordered the dish which immediately caught my attention as we started ordering - Red Velvet hazelnut milk chocolate blossoms.\nI have to admit the dessert was as pretty as it tasted."), ('Rated 5.0', 'RATED\n  Have eaten here multiple times in the last 2 years.. the service is really good and the live music that i have seen during weekends is good. While their pizzas are good , I especially love their bruchetta. A special mention of the beef skewers which they served during one of their surf & turf specials.. it was hands down the best piece of meat I had had in any restaurant in this country. Their pastas and desserts are amazing too.. and all of it goes down really well with a chilled beer. So definitely try this place out.'), ('Rated 4.0', 'RATED\n  I love the ambience. ItÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s very nice and I the service is pretty good.\nI was waiting for a friend so I ordered the hummus dip starter which comes with a beautiful salad on the side( which surprisingly was the best part)\nNext was the Spinach and Ricotta Ravioli. It was definitely fresh and tasty and I love the arrabiata sauce.\nPizza Toscano was definitely decent. However, I noticed their vegetables seemed far too over cooked for my liking. I like a certain amount of crunch in my veggies. When I asked they explained that they grill their veggies before cooking it with the pizza so you see here it gets cooked twice. They say itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s how authentic pizza is made, I still have my doubts,but they assured me next time, they will add it according to my liking if I request while ordering which was a very nice solution. The crust is thick on the outside and extremely thin towards the center which I quite like very much.\n\nOverall a very nice tasting and dine in experience.'), ('Rated 5.0', 'RATED\n  Toscano has the most consistent food. No wonder there are over 5 branches. Absolutely love the food. I devour the pizzas and dessert every single time.'), ('Rated 5.0', 'RATED\n  Amazing place. Amazing food. Ordered arrabiata pasta and baby corn and olives pizza. Simply delightful. The place is like a fine-dining and quiet amongst the choas of forum mall.'), ('Rated 5.0', "RATED\n  I always love this place!??? A little pricey but so.is the quality of the food that they cook!?\nWe have literally tried every dish from their menu and nothing so far has ever disappointed us!??\nDon't forget to try their desert specials"), ('Rated 5.0', 'RATED\n  Its good if you wanna go for a date with your special one. Ambience and decorations ate great. Food is tasty, had pizza and pasta (as usual). Staff is super helpful here. Just a quick suggestion, this place could have been a little dimmer as all tables are candle light and light from the mall is too much. It might not be a candle light dinner experience for us, but it was great.'), ('Rated 5.0', "RATED\n  Accidentally walked into this place after a late movie at forum.\nFor starters, it accepts Zomato Gold, that's a win.\n\nIt's a wine bar with Mediterranean food. I loved it. Love the perfect blend of flavors. They serve lipsmacking basil pesto in olive oil.\n\nWe ordered pizza and a fish dish (fish of the day with pumpkin). Throughly enjoyed myself! For dessert we had a vanilla creme brulee.\nThe presentation is very fine, the staff are very well trained and polite.\n\nThe ambience and decor are simple yet pretty!."), ('Rated 5.0', "RATED\n  Best place for live music and food. Very cozy and beautiful ?. One of the best ambience. Food was amazingly well. They give complimentary cake and wish you as well if it's your bday or anniversary. It's a must go place."), ('Rated 4.0', 'RATED\n  This place is awesome, loved the ambience quite a happening place. Pizzas and desserts are best\nI can say.. the too costly. Rich can afford this price regularly.'), ('Rated 4.0', 'RATED\n  The best thing about toscano is that the food\npresentation is superb so obviously the dish ordered is a visual delight at the very onset.\n\nI have tried the salmon preparation which I thought was quite extra ordinary. The pasta and the margarita pizza would be the one of the best in Bangalore.\n\nAmbience and service is good. But there is scope of improvement. I am nitpicking here though.'), ('Rated 4.0', 'RATED\n  this place servers some amazing italian food. khalua moouse was just out of this world. must hve also chicken in pepper sauce was a little take on our kali mirch chicken'), ('Rated 4.0', "RATED\n  Great place with amazing food and good vibes. Chicken Ravioli is delicious. Quantity can be an issue for some people. Tired chicken lasagna too but again I couldn't believe the quantity for not sufficient for even 2 people. I couldn't rate 5 stars for quantity. Staff is very polite and friendly."), ('Rated 5.0', 'RATED\n  Had been here for deserts\nOrange cremux was the best\nExecutive suban served us and he was great\nThe ambiance was really good\nTry this place if your in forum'), ('Rated 4.0', 'RATED\n  This place is awesome, loved the ambience quite a happening place. Pizzas and desserts are best\nI can say.. the too costly. Rich can afford this price regularly.'), ('Rated 4.0', 'RATED\n  The best thing about toscano is that the food\npresentation is superb so obviously the dish ordered is a visual delight at the very onset.\n\nI have tried the salmon preparation which I thought was quite extra ordinary. The pasta and the margarita pizza would be the one of the best in Bangalore.\n\nAmbience and service is good. But there is scope of improvement. I am nitpicking here though.'), ('Rated 4.0', 'RATED\n  this place servers some amazing italian food. khalua moouse was just out of this world. must hve also chicken in pepper sauce was a little take on our kali mirch chicken'), ('Rated 4.0', "RATED\n  Great place with amazing food and good vibes. Chicken Ravioli is delicious. Quantity can be an issue for some people. Tired chicken lasagna too but again I couldn't believe the quantity for not sufficient for even 2 people. I couldn't rate 5 stars for quantity. Staff is very polite and friendly."), ('Rated 5.0', 'RATED\n  Had been here for deserts\nOrange cremux was the best\nExecutive suban served us and he was great\nThe ambiance was really good\nTry this place if your in forum'), ('Rated 4.0', 'RATED\n  This place is awesome, loved the ambience quite a happening place. Pizzas and desserts are best\nI can say.. the too costly. Rich can afford this price regularly.'), ('Rated 4.0', 'RATED\n  The best thing about toscano is that the food\npresentation is superb so obviously the dish ordered is a visual delight at the very onset.\n\nI have tried the salmon preparation which I thought was quite extra ordinary. The pasta and the margarita pizza would be the one of the best in Bangalore.\n\nAmbience and service is good. But there is scope of improvement. I am nitpicking here though.'), ('Rated 4.0', 'RATED\n  this place servers some amazing italian food. khalua moouse was just out of this world. must hve also chicken in pepper sauce was a little take on our kali mirch chicken'), ('Rated 4.0', "RATED\n  Great place with amazing food and good vibes. Chicken Ravioli is delicious. Quantity can be an issue for some people. Tired chicken lasagna too but again I couldn't believe the quantity for not sufficient for even 2 people. I couldn't rate 5 stars for quantity. Staff is very polite and friendly."), ('Rated 5.0', 'RATED\n  Had been here for deserts\nOrange cremux was the best\nExecutive suban served us and he was great\nThe ambiance was really good\nTry this place if your in forum'), ('Rated 4.0', 'RATED\n  This place is awesome, loved the ambience quite a happening place. Pizzas and desserts are best\nI can say.. the too costly. Rich can afford this price regularly.'), ('Rated 4.0', 'RATED\n  The best thing about toscano is that the food\npresentation is superb so obviously the dish ordered is a visual delight at the very onset.\n\nI have tried the salmon preparation which I thought was quite extra ordinary. The pasta and the margarita pizza would be the one of the best in Bangalore.\n\nAmbience and service is good. But there is scope of improvement. I am nitpicking here though.'), ('Rated 4.0', 'RATED\n  this place servers some amazing italian food. khalua moouse was just out of this world. must hve also chicken in pepper sauce was a little take on our kali mirch chicken'), ('Rated 4.0', "RATED\n  Great place with amazing food and good vibes. Chicken Ravioli is delicious. Quantity can be an issue for some people. Tired chicken lasagna too but again I couldn't believe the quantity for not sufficient for even 2 people. I couldn't rate 5 stars for quantity. Staff is very polite and friendly."), ('Rated 5.0', 'RATED\n  Had been here for deserts\nOrange cremux was the best\nExecutive suban served us and he was great\nThe ambiance was really good\nTry this place if your in forum'), ('Rated 5.0', "RATED\n  This place has such great ambience, the only thing that annoyed me was that the seating was all close to each other and it looked conjusted. The service was incredible. Suban was our waiter and he was very helpful. Coming to the food the pizza was flavourful and different from the other places I've been to. The pepper steak was great as well. Really enjoyed it here.\n\nFood: 4.5 /5\nService: 5/5\nAmbience: 4/5"), ('Rated 5.0', 'RATED\n  I went this place last weekend with my family,I ordered seafood soup and pizza pollo funghi,it was really good , and service was excellent ambiance good.season spl whole turkey take way it was really interesting.and mind-blowing presentetion ,& it was yummy test ,I recommend this place for Italian food lovers.'), ('Rated 5.0', 'RATED\n  Amazing food and really wow desserts. The Aglio olio was very well made and the pizza was just perfect. This place is a must for Italian eats and the ambience is also great.'), ('Rated 4.0', 'RATED\n  The food was fresh, properly prepared. We highly recommend it. My brother and I came here for a quiet lunch and catching up, this place was just right it. The food had fresh ingredients and was served quick. Definitely go there for a family gathering, casual meetings or just to enjoy some alone time with some live music ??'), ('Rated 5.0', "RATED\n  The favourable reviews and the cravings for Italian cuisine brought me here. Finding this place is an easy task as it's located in the forum mall. The ambiance is not unique but certainly lively here. For the first time I tried fish pizza and I loved it. Chicken steak was also amazing not only because of the taste but its presentation was also unique. The deserts are a specialty here, make sure you consult the waiter before placing an order. Price is reasonable here, and if you have zomato gold, the happiness will get doubled."), ('Rated 5.0', "RATED\n  This place has such great ambience, the only thing that annoyed me was that the seating was all close to each other and it looked conjusted. The service was incredible. Suban was our waiter and he was very helpful. Coming to the food the pizza was flavourful and different from the other places I've been to. The pepper steak was great as well. Really enjoyed it here.\n\nFood: 4.5 /5\nService: 5/5\nAmbience: 4/5"), ('Rated 5.0', 'RATED\n  I went this place last weekend with my family,I ordered seafood soup and pizza pollo funghi,it was really good , and service was excellent ambiance good.season spl whole turkey take way it was really interesting.and mind-blowing presentetion ,& it was yummy test ,I recommend this place for Italian food lovers.'), ('Rated 5.0', 'RATED\n  Amazing food and really wow desserts. The Aglio olio was very well made and the pizza was just perfect. This place is a must for Italian eats and the ambience is also great.'), ('Rated 4.0', 'RATED\n  The food was fresh, properly prepared. We highly recommend it. My brother and I came here for a quiet lunch and catching up, this place was just right it. The food had fresh ingredients and was served quick. Definitely go there for a family gathering, casual meetings or just to enjoy some alone time with some live music ??'), ('Rated 5.0', "RATED\n  The favourable reviews and the cravings for Italian cuisine brought me here. Finding this place is an easy task as it's located in the forum mall. The ambiance is not unique but certainly lively here. For the first time I tried fish pizza and I loved it. Chicken steak was also amazing not only because of the taste but its presentation was also unique. The deserts are a specialty here, make sure you consult the waiter before placing an order. Price is reasonable here, and if you have zomato gold, the happiness will get doubled."), ('Rated 5.0', "RATED\n  This place has such great ambience, the only thing that annoyed me was that the seating was all close to each other and it looked conjusted. The service was incredible. Suban was our waiter and he was very helpful. Coming to the food the pizza was flavourful and different from the other places I've been to. The pepper steak was great as well. Really enjoyed it here.\n\nFood: 4.5 /5\nService: 5/5\nAmbience: 4/5"), ('Rated 5.0', 'RATED\n  I went this place last weekend with my family,I ordered seafood soup and pizza pollo funghi,it was really good , and service was excellent ambiance good.season spl whole turkey take way it was really interesting.and mind-blowing presentetion ,& it was yummy test ,I recommend this place for Italian food lovers.'), ('Rated 5.0', 'RATED\n  Amazing food and really wow desserts. The Aglio olio was very well made and the pizza was just perfect. This place is a must for Italian eats and the ambience is also great.'), ('Rated 4.0', 'RATED\n  The food was fresh, properly prepared. We highly recommend it. My brother and I came here for a quiet lunch and catching up, this place was just right it. The food had fresh ingredients and was served quick. Definitely go there for a family gathering, casual meetings or just to enjoy some alone time with some live music ??'), ('Rated 5.0', "RATED\n  The favourable reviews and the cravings for Italian cuisine brought me here. Finding this place is an easy task as it's located in the forum mall. The ambiance is not unique but certainly lively here. For the first time I tried fish pizza and I loved it. Chicken steak was also amazing not only because of the taste but its presentation was also unique. The deserts are a specialty here, make sure you consult the waiter before placing an order. Price is reasonable here, and if you have zomato gold, the happiness will get doubled."), ('Rated 5.0', "RATED\n  This place has such great ambience, the only thing that annoyed me was that the seating was all close to each other and it looked conjusted. The service was incredible. Suban was our waiter and he was very helpful. Coming to the food the pizza was flavourful and different from the other places I've been to. The pepper steak was great as well. Really enjoyed it here.\n\nFood: 4.5 /5\nService: 5/5\nAmbience: 4/5"), ('Rated 5.0', 'RATED\n  I went this place last weekend with my family,I ordered seafood soup and pizza pollo funghi,it was really good , and service was excellent ambiance good.season spl whole turkey take way it was really interesting.and mind-blowing presentetion ,& it was yummy test ,I recommend this place for Italian food lovers.'), ('Rated 5.0', 'RATED\n  Amazing food and really wow desserts. The Aglio olio was very well made and the pizza was just perfect. This place is a must for Italian eats and the ambience is also great.'), ('Rated 4.0', 'RATED\n  The food was fresh, properly prepared. We highly recommend it. My brother and I came here for a quiet lunch and catching up, this place was just right it. The food had fresh ingredients and was served quick. Definitely go there for a family gathering, casual meetings or just to enjoy some alone time with some live music ??'), ('Rated 5.0', "RATED\n  The favourable reviews and the cravings for Italian cuisine brought me here. Finding this place is an easy task as it's located in the forum mall. The ambiance is not unique but certainly lively here. For the first time I tried fish pizza and I loved it. Chicken steak was also amazing not only because of the taste but its presentation was also unique. The deserts are a specialty here, make sure you consult the waiter before placing an order. Price is reasonable here, and if you have zomato gold, the happiness will get doubled."), ('Rated 5.0', "RATED\n  Well food is always top notch here, there's no question about it. I'm writing this to appreciate the staff. I came here on a Saturday and it was full house. We were against time since we had a movie after dinner. I asked how long it would take and the manager immediately figured that we had a movie. He assured us that the order would be prepared quickly and it was. Kudos to the management, kitchen and staff."), ('Rated 3.0', 'RATED\n  Went for a date here at toscano.. the pasta was pale while the pizza was good. The ambience is good but its a bit loud. If you are a person who wants to enjoy food at a quiet place then dont go here. However with friends this place is fun'), ('Rated 5.0', 'RATED\n  This place is always one of the best to have Italian in Bangalore .\nIn love with their Pesto preparation.\nLove the ambience and the professional staff.\nLIIT is best when it comes to drinks .\n\nKeep it up?'), ('Rated 5.0', 'RATED\n  One of the best italian cuisine restaurants, for a date night.a tad bit expensive, but zomato gold helps. Loved the ambience. The cocktail i ordered was not upto the mark, was way too strong. The service was good. The location is super, you can shop and when you tire from it, have lunch here!'), ('Rated 5.0', 'RATED\n  Loved the food at @toscano_india ! Tried out the Chicken Caesar salad, Veg aglio olio and spaghetti Carbonara ! The staff there also were super helpful and sweet, namely -Prosonjeet and Somesh in their Forum mall branch!'), ('Rated 5.0', "RATED\n  Well food is always top notch here, there's no question about it. I'm writing this to appreciate the staff. I came here on a Saturday and it was full house. We were against time since we had a movie after dinner. I asked how long it would take and the manager immediately figured that we had a movie. He assured us that the order would be prepared quickly and it was. Kudos to the management, kitchen and staff."), ('Rated 3.0', 'RATED\n  Went for a date here at toscano.. the pasta was pale while the pizza was good. The ambience is good but its a bit loud. If you are a person who wants to enjoy food at a quiet place then dont go here. However with friends this place is fun'), ('Rated 5.0', 'RATED\n  This place is always one of the best to have Italian in Bangalore .\nIn love with their Pesto preparation.\nLove the ambience and the professional staff.\nLIIT is best when it comes to drinks .\n\nKeep it up?'), ('Rated 5.0', 'RATED\n  One of the best italian cuisine restaurants, for a date night.a tad bit expensive, but zomato gold helps. Loved the ambience. The cocktail i ordered was not upto the mark, was way too strong. The service was good. The location is super, you can shop and when you tire from it, have lunch here!'), ('Rated 5.0', 'RATED\n  Loved the food at @toscano_india ! Tried out the Chicken Caesar salad, Veg aglio olio and spaghetti Carbonara ! The staff there also were super helpful and sweet, namely -Prosonjeet and Somesh in their Forum mall branch!'), ('Rated 5.0', "RATED\n  Well food is always top notch here, there's no question about it. I'm writing this to appreciate the staff. I came here on a Saturday and it was full house. We were against time since we had a movie after dinner. I asked how long it would take and the manager immediately figured that we had a movie. He assured us that the order would be prepared quickly and it was. Kudos to the management, kitchen and staff."), ('Rated 3.0', 'RATED\n  Went for a date here at toscano.. the pasta was pale while the pizza was good. The ambience is good but its a bit loud. If you are a person who wants to enjoy food at a quiet place then dont go here. However with friends this place is fun'), ('Rated 5.0', 'RATED\n  This place is always one of the best to have Italian in Bangalore .\nIn love with their Pesto preparation.\nLove the ambience and the professional staff.\nLIIT is best when it comes to drinks .\n\nKeep it up?'), ('Rated 5.0', 'RATED\n  One of the best italian cuisine restaurants, for a date night.a tad bit expensive, but zomato gold helps. Loved the ambience. The cocktail i ordered was not upto the mark, was way too strong. The service was good. The location is super, you can shop and when you tire from it, have lunch here!'), ('Rated 5.0', 'RATED\n  Loved the food at @toscano_india ! Tried out the Chicken Caesar salad, Veg aglio olio and spaghetti Carbonara ! The staff there also were super helpful and sweet, namely -Prosonjeet and Somesh in their Forum mall branch!'), ('Rated 5.0', "RATED\n  Well food is always top notch here, there's no question about it. I'm writing this to appreciate the staff. I came here on a Saturday and it was full house. We were against time since we had a movie after dinner. I asked how long it would take and the manager immediately figured that we had a movie. He assured us that the order would be prepared quickly and it was. Kudos to the management, kitchen and staff."), ('Rated 3.0', 'RATED\n  Went for a date here at toscano.. the pasta was pale while the pizza was good. The ambience is good but its a bit loud. If you are a person who wants to enjoy food at a quiet place then dont go here. However with friends this place is fun'), ('Rated 5.0', 'RATED\n  This place is always one of the best to have Italian in Bangalore .\nIn love with their Pesto preparation.\nLove the ambience and the professional staff.\nLIIT is best when it comes to drinks .\n\nKeep it up?'), ('Rated 5.0', 'RATED\n  One of the best italian cuisine restaurants, for a date night.a tad bit expensive, but zomato gold helps. Loved the ambience. The cocktail i ordered was not upto the mark, was way too strong. The service was good. The location is super, you can shop and when you tire from it, have lunch here!'), ('Rated 5.0', 'RATED\n  Loved the food at @toscano_india ! Tried out the Chicken Caesar salad, Veg aglio olio and spaghetti Carbonara ! The staff there also were super helpful and sweet, namely -Prosonjeet and Somesh in their Forum mall branch!'), ('Rated 5.0', "RATED\n  Well food is always top notch here, there's no question about it. I'm writing this to appreciate the staff. I came here on a Saturday and it was full house. We were against time since we had a movie after dinner. I asked how long it would take and the manager immediately figured that we had a movie. He assured us that the order would be prepared quickly and it was. Kudos to the management, kitchen and staff."), ('Rated 3.0', 'RATED\n  Went for a date here at toscano.. the pasta was pale while the pizza was good. The ambience is good but its a bit loud. If you are a person who wants to enjoy food at a quiet place then dont go here. However with friends this place is fun'), ('Rated 5.0', 'RATED\n  This place is always one of the best to have Italian in Bangalore .\nIn love with their Pesto preparation.\nLove the ambience and the professional staff.\nLIIT is best when it comes to drinks .\n\nKeep it up?'), ('Rated 5.0', 'RATED\n  One of the best italian cuisine restaurants, for a date night.a tad bit expensive, but zomato gold helps. Loved the ambience. The cocktail i ordered was not upto the mark, was way too strong. The service was good. The location is super, you can shop and when you tire from it, have lunch here!'), ('Rated 5.0', 'RATED\n  Loved the food at @toscano_india ! Tried out the Chicken Caesar salad, Veg aglio olio and spaghetti Carbonara ! The staff there also were super helpful and sweet, namely -Prosonjeet and Somesh in their Forum mall branch!'), ('Rated 5.0', "RATED\n  Best place for Italian cuisine!! :D\nIn love with hummus and pita!\nPasta !! Brusetta !! Platter!! Everything was good.\nI hope pizza in platter changes, cause if pizza gets bit cold it's not so great taste !\nService is great too ?"), ('Rated 4.0', 'RATED\n  Amidst the noisy crowd of forum mall, lies Toscano , a superb option for you to grab a drink and enjoy some tasty Italian food. Quality of bread is a bonus! The pizzaÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s crust is brilliant! Pastas are sumptuous ! Service is also great. The only negative is that itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s quite pricey!'), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle free experience!\n\nVisited this place for dinner on a Sunday night. Them ambience and decor of the place had been redone to match the Halloween theme. Special mention for the candles on the table.\n\nWe ordered Pizza Vegeteriana, Sweet Potato Croquettes, Fried Mozzarella, Spinach Ravioli. From the Halloween menu - Monster Eye Ball and Spider Web Soup. They provided a complementary basket of bread which wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t great.\n\nThe pizza was delicious and huge (12inch). The croquettes was good too. But the other items were just up to the mark. The plating and presentation was spectacular though.\n\nFor desserts we had Mango Pannacotta and Death by chocolate. The pannacotta was delicious (and eggless), chocolate dessert was a disaster.\n\nServers are friendly and polite, with an improvement in the taste of the dishes, this place will be a good fine dinning experience.'), ('Rated 4.5', 'RATED\n  We went here on a lunch and we had an offer which said 50% off.\n\nThe ambiance was slick and we loved it.\n\nWe sat on a corner seat.\n\nThe waiter was really nice and friendly and the service was also great.\n\nComing to the main part, the food. We ordered -\n\nBrocolli almond soup - 5/5\nPizza vegetariana - 5/5 ( loved it)\nMushroom Risotto - 4.5/5\n4 cheese raviolli - 4/5 (the flour dough was slightly thicker in the pasta)\nSphagetti Arabiata - 4/5\nTiramisu - 4.5/5 (One of the best i have had)\n\nOverall, a very nice place to spend tim with friends and family.'), ('Rated 5.0', 'RATED\n  Best Italian restaurant in Bangalore!\nThe ambiance is Grand and Romantic together. Service is top notch and the dishes are 100% authentic Italian.\nWe ordered Risotto di Pollo and Pizza Vegetarania. And clubbed them with couple of refreshing mocktails. Dishes were ravishing.\nKeep in mind that they serve only large Pizzas and Risotto/Sphagetti servings are also generous.\nAll in all a memorable experience!!'), ('Rated 5.0', "RATED\n  Best place for Italian cuisine!! :D\nIn love with hummus and pita!\nPasta !! Brusetta !! Platter!! Everything was good.\nI hope pizza in platter changes, cause if pizza gets bit cold it's not so great taste !\nService is great too ?"), ('Rated 4.0', 'RATED\n  Amidst the noisy crowd of forum mall, lies Toscano , a superb option for you to grab a drink and enjoy some tasty Italian food. Quality of bread is a bonus! The pizzaÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s crust is brilliant! Pastas are sumptuous ! Service is also great. The only negative is that itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s quite pricey!'), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle free experience!\n\nVisited this place for dinner on a Sunday night. Them ambience and decor of the place had been redone to match the Halloween theme. Special mention for the candles on the table.\n\nWe ordered Pizza Vegeteriana, Sweet Potato Croquettes, Fried Mozzarella, Spinach Ravioli. From the Halloween menu - Monster Eye Ball and Spider Web Soup. They provided a complementary basket of bread which wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t great.\n\nThe pizza was delicious and huge (12inch). The croquettes was good too. But the other items were just up to the mark. The plating and presentation was spectacular though.\n\nFor desserts we had Mango Pannacotta and Death by chocolate. The pannacotta was delicious (and eggless), chocolate dessert was a disaster.\n\nServers are friendly and polite, with an improvement in the taste of the dishes, this place will be a good fine dinning experience.'), ('Rated 4.5', 'RATED\n  We went here on a lunch and we had an offer which said 50% off.\n\nThe ambiance was slick and we loved it.\n\nWe sat on a corner seat.\n\nThe waiter was really nice and friendly and the service was also great.\n\nComing to the main part, the food. We ordered -\n\nBrocolli almond soup - 5/5\nPizza vegetariana - 5/5 ( loved it)\nMushroom Risotto - 4.5/5\n4 cheese raviolli - 4/5 (the flour dough was slightly thicker in the pasta)\nSphagetti Arabiata - 4/5\nTiramisu - 4.5/5 (One of the best i have had)\n\nOverall, a very nice place to spend tim with friends and family.'), ('Rated 5.0', 'RATED\n  Best Italian restaurant in Bangalore!\nThe ambiance is Grand and Romantic together. Service is top notch and the dishes are 100% authentic Italian.\nWe ordered Risotto di Pollo and Pizza Vegetarania. And clubbed them with couple of refreshing mocktails. Dishes were ravishing.\nKeep in mind that they serve only large Pizzas and Risotto/Sphagetti servings are also generous.\nAll in all a memorable experience!!'), ('Rated 5.0', "RATED\n  Best place for Italian cuisine!! :D\nIn love with hummus and pita!\nPasta !! Brusetta !! Platter!! Everything was good.\nI hope pizza in platter changes, cause if pizza gets bit cold it's not so great taste !\nService is great too ?"), ('Rated 4.0', 'RATED\n  Amidst the noisy crowd of forum mall, lies Toscano , a superb option for you to grab a drink and enjoy some tasty Italian food. Quality of bread is a bonus! The pizzaÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s crust is brilliant! Pastas are sumptuous ! Service is also great. The only negative is that itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s quite pricey!'), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle free experience!\n\nVisited this place for dinner on a Sunday night. Them ambience and decor of the place had been redone to match the Halloween theme. Special mention for the candles on the table.\n\nWe ordered Pizza Vegeteriana, Sweet Potato Croquettes, Fried Mozzarella, Spinach Ravioli. From the Halloween menu - Monster Eye Ball and Spider Web Soup. They provided a complementary basket of bread which wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t great.\n\nThe pizza was delicious and huge (12inch). The croquettes was good too. But the other items were just up to the mark. The plating and presentation was spectacular though.\n\nFor desserts we had Mango Pannacotta and Death by chocolate. The pannacotta was delicious (and eggless), chocolate dessert was a disaster.\n\nServers are friendly and polite, with an improvement in the taste of the dishes, this place will be a good fine dinning experience.'), ('Rated 4.5', 'RATED\n  We went here on a lunch and we had an offer which said 50% off.\n\nThe ambiance was slick and we loved it.\n\nWe sat on a corner seat.\n\nThe waiter was really nice and friendly and the service was also great.\n\nComing to the main part, the food. We ordered -\n\nBrocolli almond soup - 5/5\nPizza vegetariana - 5/5 ( loved it)\nMushroom Risotto - 4.5/5\n4 cheese raviolli - 4/5 (the flour dough was slightly thicker in the pasta)\nSphagetti Arabiata - 4/5\nTiramisu - 4.5/5 (One of the best i have had)\n\nOverall, a very nice place to spend tim with friends and family.'), ('Rated 5.0', 'RATED\n  Best Italian restaurant in Bangalore!\nThe ambiance is Grand and Romantic together. Service is top notch and the dishes are 100% authentic Italian.\nWe ordered Risotto di Pollo and Pizza Vegetarania. And clubbed them with couple of refreshing mocktails. Dishes were ravishing.\nKeep in mind that they serve only large Pizzas and Risotto/Sphagetti servings are also generous.\nAll in all a memorable experience!!'), ('Rated 5.0', "RATED\n  Best place for Italian cuisine!! :D\nIn love with hummus and pita!\nPasta !! Brusetta !! Platter!! Everything was good.\nI hope pizza in platter changes, cause if pizza gets bit cold it's not so great taste !\nService is great too ?"), ('Rated 4.0', 'RATED\n  Amidst the noisy crowd of forum mall, lies Toscano , a superb option for you to grab a drink and enjoy some tasty Italian food. Quality of bread is a bonus! The pizzaÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s crust is brilliant! Pastas are sumptuous ! Service is also great. The only negative is that itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s quite pricey!'), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle free experience!\n\nVisited this place for dinner on a Sunday night. Them ambience and decor of the place had been redone to match the Halloween theme. Special mention for the candles on the table.\n\nWe ordered Pizza Vegeteriana, Sweet Potato Croquettes, Fried Mozzarella, Spinach Ravioli. From the Halloween menu - Monster Eye Ball and Spider Web Soup. They provided a complementary basket of bread which wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t great.\n\nThe pizza was delicious and huge (12inch). The croquettes was good too. But the other items were just up to the mark. The plating and presentation was spectacular though.\n\nFor desserts we had Mango Pannacotta and Death by chocolate. The pannacotta was delicious (and eggless), chocolate dessert was a disaster.\n\nServers are friendly and polite, with an improvement in the taste of the dishes, this place will be a good fine dinning experience.'), ('Rated 4.5', 'RATED\n  We went here on a lunch and we had an offer which said 50% off.\n\nThe ambiance was slick and we loved it.\n\nWe sat on a corner seat.\n\nThe waiter was really nice and friendly and the service was also great.\n\nComing to the main part, the food. We ordered -\n\nBrocolli almond soup - 5/5\nPizza vegetariana - 5/5 ( loved it)\nMushroom Risotto - 4.5/5\n4 cheese raviolli - 4/5 (the flour dough was slightly thicker in the pasta)\nSphagetti Arabiata - 4/5\nTiramisu - 4.5/5 (One of the best i have had)\n\nOverall, a very nice place to spend tim with friends and family.'), ('Rated 5.0', 'RATED\n  Best Italian restaurant in Bangalore!\nThe ambiance is Grand and Romantic together. Service is top notch and the dishes are 100% authentic Italian.\nWe ordered Risotto di Pollo and Pizza Vegetarania. And clubbed them with couple of refreshing mocktails. Dishes were ravishing.\nKeep in mind that they serve only large Pizzas and Risotto/Sphagetti servings are also generous.\nAll in all a memorable experience!!'), ('Rated 5.0', "RATED\n  Best place for Italian cuisine!! :D\nIn love with hummus and pita!\nPasta !! Brusetta !! Platter!! Everything was good.\nI hope pizza in platter changes, cause if pizza gets bit cold it's not so great taste !\nService is great too ?"), ('Rated 4.0', 'RATED\n  Amidst the noisy crowd of forum mall, lies Toscano , a superb option for you to grab a drink and enjoy some tasty Italian food. Quality of bread is a bonus! The pizzaÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s crust is brilliant! Pastas are sumptuous ! Service is also great. The only negative is that itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s quite pricey!'), ('Rated 4.0', 'RATED\n  [Zomato Gold] Hassle free experience!\n\nVisited this place for dinner on a Sunday night. Them ambience and decor of the place had been redone to match the Halloween theme. Special mention for the candles on the table.\n\nWe ordered Pizza Vegeteriana, Sweet Potato Croquettes, Fried Mozzarella, Spinach Ravioli. From the Halloween menu - Monster Eye Ball and Spider Web Soup. They provided a complementary basket of bread which wasnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t great.\n\nThe pizza was delicious and huge (12inch). The croquettes was good too. But the other items were just up to the mark. The plating and presentation was spectacular though.\n\nFor desserts we had Mango Pannacotta and Death by chocolate. The pannacotta was delicious (and eggless), chocolate dessert was a disaster.\n\nServers are friendly and polite, with an improvement in the taste of the dishes, this place will be a good fine dinning experience.'), ('Rated 4.5', 'RATED\n  We went here on a lunch and we had an offer which said 50% off.\n\nThe ambiance was slick and we loved it.\n\nWe sat on a corner seat.\n\nThe waiter was really nice and friendly and the service was also great.\n\nComing to the main part, the food. We ordered -\n\nBrocolli almond soup - 5/5\nPizza vegetariana - 5/5 ( loved it)\nMushroom Risotto - 4.5/5\n4 cheese raviolli - 4/5 (the flour dough was slightly thicker in the pasta)\nSphagetti Arabiata - 4/5\nTiramisu - 4.5/5 (One of the best i have had)\n\nOverall, a very nice place to spend tim with friends and family.'), ('Rated 5.0', 'RATED\n  Best Italian restaurant in Bangalore!\nThe ambiance is Grand and Romantic together. Service is top notch and the dishes are 100% authentic Italian.\nWe ordered Risotto di Pollo and Pizza Vegetarania. And clubbed them with couple of refreshing mocktails. Dishes were ravishing.\nKeep in mind that they serve only large Pizzas and Risotto/Sphagetti servings are also generous.\nAll in all a memorable experience!!'), ('Rated 5.0', 'RATED\n  Certainly one of the best Italian joints in town .\n\nWe tried their pizza , salad and pasta.\n\nPizza was thin crust , and well spread cheese .\n\nSalad was the best with crunchy fresh veggies\n\nI ate their agli olio which was rightly spiced up . Their pesto was good too .\n\nAmbience is good . Try their wine they some good ones .'), ('Rated 5.0', "RATED\n  Wonderful place with wonderful service and excellent food! We started off with fried mozzarella which didn't seem to end as we tried breaking a piece off. Highly recommend the pizzas here, with the right amount of cheeses and sauces, cooked to perfection. The fornaggio white pasta was brilliant and was contemplating getting another dish. The drinks however could do better as we felt it was mostly just sugar syrup. Would recommend to anyone who loves Italian cuisine!"), ('Rated 4.0', "RATED\n  Good food, quality service and decent ambience. I went here once on a Saturday evening and I wasn't disappointed. Will definitely visit again."), ('Rated 4.0', "RATED\n  First of all the service is too good.\n\nNow let's start the review.\n\nVisited the place on Sunday night , not much crowd( but this place deserve to be packed)\nAmbience is nice (though it's in the mall) but once u enter you will not feel that's it's inside the mall.\n\nFood is fantastic.\n\nOrder one pizza and a dessert.\nLoved it to the core.\n\nGo check out this place. ?%Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©"), ('Rated 5.0', "RATED\n  So, the joint boasts of all awards that they have received and based on my experience, I must say, they deserve all of them. Ambiance, Food, Service... they basically conquer all aspects of hospitality.\n\nFirst of all, they kinda share the space with 'Salt' which again is a brilliant Indian restaurant. Ambiance was amazing...pristine, well lit and spacious. It made me nostalgic of my visit to Paris. Top notch!\n\nComing to food, we were first served the house bread with tomato relish and Pesto....wonderful complimentary serving. We ordered Quattro-Formaggi pizza....yumm....the olive-oil & herbs concoction was cranking the flavors to another level. Then we ordered vegetarian lasagna which again was  brilliant.\n\nService was classy too. Staff, polite and very professional. A shout-out to Mr. Sumaish who served us. great job!\n\nAll in all, keep up your class and I'll keep visiting. :)"), ('Rated 5.0', 'RATED\n  Certainly one of the best Italian joints in town .\n\nWe tried their pizza , salad and pasta.\n\nPizza was thin crust , and well spread cheese .\n\nSalad was the best with crunchy fresh veggies\n\nI ate their agli olio which was rightly spiced up . Their pesto was good too .\n\nAmbience is good . Try their wine they some good ones .'), ('Rated 5.0', "RATED\n  Wonderful place with wonderful service and excellent food! We started off with fried mozzarella which didn't seem to end as we tried breaking a piece off. Highly recommend the pizzas here, with the right amount of cheeses and sauces, cooked to perfection. The fornaggio white pasta was brilliant and was contemplating getting another dish. The drinks however could do better as we felt it was mostly just sugar syrup. Would recommend to anyone who loves Italian cuisine!"), ('Rated 4.0', "RATED\n  Good food, quality service and decent ambience. I went here once on a Saturday evening and I wasn't disappointed. Will definitely visit again."), ('Rated 4.0', "RATED\n  First of all the service is too good.\n\nNow let's start the review.\n\nVisited the place on Sunday night , not much crowd( but this place deserve to be packed)\nAmbience is nice (though it's in the mall) but once u enter you will not feel that's it's inside the mall.\n\nFood is fantastic.\n\nOrder one pizza and a dessert.\nLoved it to the core.\n\nGo check out this place. ?%Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©"), ('Rated 5.0', "RATED\n  So, the joint boasts of all awards that they have received and based on my experience, I must say, they deserve all of them. Ambiance, Food, Service... they basically conquer all aspects of hospitality.\n\nFirst of all, they kinda share the space with 'Salt' which again is a brilliant Indian restaurant. Ambiance was amazing...pristine, well lit and spacious. It made me nostalgic of my visit to Paris. Top notch!\n\nComing to food, we were first served the house bread with tomato relish and Pesto....wonderful complimentary serving. We ordered Quattro-Formaggi pizza....yumm....the olive-oil & herbs concoction was cranking the flavors to another level. Then we ordered vegetarian lasagna which again was  brilliant.\n\nService was classy too. Staff, polite and very professional. A shout-out to Mr. Sumaish who served us. great job!\n\nAll in all, keep up your class and I'll keep visiting. :)"), ('Rated 5.0', 'RATED\n  Certainly one of the best Italian joints in town .\n\nWe tried their pizza , salad and pasta.\n\nPizza was thin crust , and well spread cheese .\n\nSalad was the best with crunchy fresh veggies\n\nI ate their agli olio which was rightly spiced up . Their pesto was good too .\n\nAmbience is good . Try their wine they some good ones .'), ('Rated 5.0', "RATED\n  Wonderful place with wonderful service and excellent food! We started off with fried mozzarella which didn't seem to end as we tried breaking a piece off. Highly recommend the pizzas here, with the right amount of cheeses and sauces, cooked to perfection. The fornaggio white pasta was brilliant and was contemplating getting another dish. The drinks however could do better as we felt it was mostly just sugar syrup. Would recommend to anyone who loves Italian cuisine!"), ('Rated 4.0', "RATED\n  Good food, quality service and decent ambience. I went here once on a Saturday evening and I wasn't disappointed. Will definitely visit again."), ('Rated 4.0', "RATED\n  First of all the service is too good.\n\nNow let's start the review.\n\nVisited the place on Sunday night , not much crowd( but this place deserve to be packed)\nAmbience is nice (though it's in the mall) but once u enter you will not feel that's it's inside the mall.\n\nFood is fantastic.\n\nOrder one pizza and a dessert.\nLoved it to the core.\n\nGo check out this place. ?%Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82©"), ('Rated 5.0', "RATED\n  So, the joint boasts of all awards that they have received and based on my experience, I must say, they deserve all of them. Ambiance, Food, Service... they basically conquer all aspects of hospitality.\n\nFirst of all, they kinda share the space with 'Salt' which again is a brilliant Indian restaurant. Ambiance was amazing...pristine, well lit and spacious. It made me nostalgic of my visit to Paris. Top notch!\n\nComing to food, we were first served the house bread with tomato relish and Pesto....wonderful complimentary serving. We ordered Quattro-Formaggi pizza....yumm....the olive-oil & herbs concoction was cranking the flavors to another level. Then we ordered vegetarian lasagna which again was  brilliant.\n\nService was classy too. Staff, polite and very professional. A shout-out to Mr. Sumaish who served us. great job!\n\nAll in all, keep up your class and I'll keep visiting. :)"), ('Rated 4.0', 'RATED\n  Amazing but still would choose BrikOven Pizza in Church street when it comes to pizza. The ambience is really wel lit and has the look and the vibe. It is a little expensive but is worth your time. Perfect for a romantic date!'), ('Rated 5.0', 'RATED\n  Just the perfect place when you are craving Italian cuisine, and personally my favourite Italian restaurant in Bangalore.\nComing to the food, we were first served some complimentary bread with tomato salsa and olive &herb dip. We ordered penne pasta in cream sauce and chicken. They use the basic Italian ingredients, but I have no idea how the pasta was so delicious! Served with crisp garlic bread, it had just right amount of cream sauce.\nWe also ordered Chicken de Toscano, which was grilled chicken stuffed with spinach filling served with ratatouille. The chicken was perfectly tender, the ratatouille good, and I loved the hint of garlic present in the dish.\nNot only was the food delicious but the service was quick and excellent. Will love to visit again!'), ('Rated 5.0', "RATED\n  With elegance at its peak, the top notch decor of this place would put a plethora of high end restaurants to shame.\nMy personal favourite for European/Italian food, it is all set to win your heart with LEGIT lightning service of any and every item on the menu.\nI am a huge fan of the chicken lasagna and the tiramisu is a must try for anyone who doesn't mind some desserts post a nice, subtle meal. Also, the white sauce pasta was one of the bests I've ever had.\nBONUS?\nGot a date? They'll light up a candle right at your table and make your evening memorable.\nCheers!"), ('Rated 5.0', "RATED\n  Humble as hell... Who cares to serve you in 5 minutes.. these guys do. Imagine we walking out of a movie to have a bite. This place is like a quickie... Highly recommended for people to walk into this place during the break at movie time. believe me they will get food faster than PVR.. hands down... Amazing staff...\n\nMr. Suresh the bartender is epic... They just know what you need and will ensure they serve you at the best. Kudos to the place and their live spirit...\n\nCheers!!\n\nDefinitely a place to visit with friends and amazing offers.. almost forgot to mention Mr. Kumar the manager... He's excellent with the entire efforts...\n\nCheers again !!\n\nAmbience: 5/5\nFood: 5/5\nService: 10/5\n\nExceeding expectations... Kudos.."), ('Rated 4.0', 'RATED\n  One of the best restaurant in Bangalore for great Italian food. Service is really good and staffs are courteous. The place is definitely quite expensive but currently they are a Zomato Gold partner restaurant, hence if you are a gold member of Zomato you wonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t feel the pinch that much.\n\nComing to food, it is really great. I have tried the below dishes and loved all of them.\nPizzas: Salmone and Bismark\nSpaghetti Pescatore and Ravioli di pollo\nSlow cooked duck confit Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 a must try\nChocolate Kahlua Mousse'), ('Rated 4.0', 'RATED\n  Amazing but still would choose BrikOven Pizza in Church street when it comes to pizza. The ambience is really wel lit and has the look and the vibe. It is a little expensive but is worth your time. Perfect for a romantic date!'), ('Rated 5.0', 'RATED\n  Just the perfect place when you are craving Italian cuisine, and personally my favourite Italian restaurant in Bangalore.\nComing to the food, we were first served some complimentary bread with tomato salsa and olive &herb dip. We ordered penne pasta in cream sauce and chicken. They use the basic Italian ingredients, but I have no idea how the pasta was so delicious! Served with crisp garlic bread, it had just right amount of cream sauce.\nWe also ordered Chicken de Toscano, which was grilled chicken stuffed with spinach filling served with ratatouille. The chicken was perfectly tender, the ratatouille good, and I loved the hint of garlic present in the dish.\nNot only was the food delicious but the service was quick and excellent. Will love to visit again!'), ('Rated 5.0', "RATED\n  With elegance at its peak, the top notch decor of this place would put a plethora of high end restaurants to shame.\nMy personal favourite for European/Italian food, it is all set to win your heart with LEGIT lightning service of any and every item on the menu.\nI am a huge fan of the chicken lasagna and the tiramisu is a must try for anyone who doesn't mind some desserts post a nice, subtle meal. Also, the white sauce pasta was one of the bests I've ever had.\nBONUS?\nGot a date? They'll light up a candle right at your table and make your evening memorable.\nCheers!"), ('Rated 5.0', "RATED\n  Humble as hell... Who cares to serve you in 5 minutes.. these guys do. Imagine we walking out of a movie to have a bite. This place is like a quickie... Highly recommended for people to walk into this place during the break at movie time. believe me they will get food faster than PVR.. hands down... Amazing staff...\n\nMr. Suresh the bartender is epic... They just know what you need and will ensure they serve you at the best. Kudos to the place and their live spirit...\n\nCheers!!\n\nDefinitely a place to visit with friends and amazing offers.. almost forgot to mention Mr. Kumar the manager... He's excellent with the entire efforts...\n\nCheers again !!\n\nAmbience: 5/5\nFood: 5/5\nService: 10/5\n\nExceeding expectations... Kudos.."), ('Rated 4.0', 'RATED\n  One of the best restaurant in Bangalore for great Italian food. Service is really good and staffs are courteous. The place is definitely quite expensive but currently they are a Zomato Gold partner restaurant, hence if you are a gold member of Zomato you wonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t feel the pinch that much.\n\nComing to food, it is really great. I have tried the below dishes and loved all of them.\nPizzas: Salmone and Bismark\nSpaghetti Pescatore and Ravioli di pollo\nSlow cooked duck confit Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 a must try\nChocolate Kahlua Mousse'), ('Rated 4.0', 'RATED\n  Amazing but still would choose BrikOven Pizza in Church street when it comes to pizza. The ambience is really wel lit and has the look and the vibe. It is a little expensive but is worth your time. Perfect for a romantic date!'), ('Rated 5.0', 'RATED\n  Just the perfect place when you are craving Italian cuisine, and personally my favourite Italian restaurant in Bangalore.\nComing to the food, we were first served some complimentary bread with tomato salsa and olive &herb dip. We ordered penne pasta in cream sauce and chicken. They use the basic Italian ingredients, but I have no idea how the pasta was so delicious! Served with crisp garlic bread, it had just right amount of cream sauce.\nWe also ordered Chicken de Toscano, which was grilled chicken stuffed with spinach filling served with ratatouille. The chicken was perfectly tender, the ratatouille good, and I loved the hint of garlic present in the dish.\nNot only was the food delicious but the service was quick and excellent. Will love to visit again!'), ('Rated 5.0', "RATED\n  With elegance at its peak, the top notch decor of this place would put a plethora of high end restaurants to shame.\nMy personal favourite for European/Italian food, it is all set to win your heart with LEGIT lightning service of any and every item on the menu.\nI am a huge fan of the chicken lasagna and the tiramisu is a must try for anyone who doesn't mind some desserts post a nice, subtle meal. Also, the white sauce pasta was one of the bests I've ever had.\nBONUS?\nGot a date? They'll light up a candle right at your table and make your evening memorable.\nCheers!"), ('Rated 5.0', "RATED\n  Humble as hell... Who cares to serve you in 5 minutes.. these guys do. Imagine we walking out of a movie to have a bite. This place is like a quickie... Highly recommended for people to walk into this place during the break at movie time. believe me they will get food faster than PVR.. hands down... Amazing staff...\n\nMr. Suresh the bartender is epic... They just know what you need and will ensure they serve you at the best. Kudos to the place and their live spirit...\n\nCheers!!\n\nDefinitely a place to visit with friends and amazing offers.. almost forgot to mention Mr. Kumar the manager... He's excellent with the entire efforts...\n\nCheers again !!\n\nAmbience: 5/5\nFood: 5/5\nService: 10/5\n\nExceeding expectations... Kudos.."), ('Rated 4.0', 'RATED\n  One of the best restaurant in Bangalore for great Italian food. Service is really good and staffs are courteous. The place is definitely quite expensive but currently they are a Zomato Gold partner restaurant, hence if you are a gold member of Zomato you wonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t feel the pinch that much.\n\nComing to food, it is really great. I have tried the below dishes and loved all of them.\nPizzas: Salmone and Bismark\nSpaghetti Pescatore and Ravioli di pollo\nSlow cooked duck confit Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 a must try\nChocolate Kahlua Mousse'), ('Rated 4.0', 'RATED\n  Amazing but still would choose BrikOven Pizza in Church street when it comes to pizza. The ambience is really wel lit and has the look and the vibe. It is a little expensive but is worth your time. Perfect for a romantic date!'), ('Rated 5.0', 'RATED\n  Just the perfect place when you are craving Italian cuisine, and personally my favourite Italian restaurant in Bangalore.\nComing to the food, we were first served some complimentary bread with tomato salsa and olive &herb dip. We ordered penne pasta in cream sauce and chicken. They use the basic Italian ingredients, but I have no idea how the pasta was so delicious! Served with crisp garlic bread, it had just right amount of cream sauce.\nWe also ordered Chicken de Toscano, which was grilled chicken stuffed with spinach filling served with ratatouille. The chicken was perfectly tender, the ratatouille good, and I loved the hint of garlic present in the dish.\nNot only was the food delicious but the service was quick and excellent. Will love to visit again!'), ('Rated 5.0', "RATED\n  With elegance at its peak, the top notch decor of this place would put a plethora of high end restaurants to shame.\nMy personal favourite for European/Italian food, it is all set to win your heart with LEGIT lightning service of any and every item on the menu.\nI am a huge fan of the chicken lasagna and the tiramisu is a must try for anyone who doesn't mind some desserts post a nice, subtle meal. Also, the white sauce pasta was one of the bests I've ever had.\nBONUS?\nGot a date? They'll light up a candle right at your table and make your evening memorable.\nCheers!"), ('Rated 5.0', "RATED\n  Humble as hell... Who cares to serve you in 5 minutes.. these guys do. Imagine we walking out of a movie to have a bite. This place is like a quickie... Highly recommended for people to walk into this place during the break at movie time. believe me they will get food faster than PVR.. hands down... Amazing staff...\n\nMr. Suresh the bartender is epic... They just know what you need and will ensure they serve you at the best. Kudos to the place and their live spirit...\n\nCheers!!\n\nDefinitely a place to visit with friends and amazing offers.. almost forgot to mention Mr. Kumar the manager... He's excellent with the entire efforts...\n\nCheers again !!\n\nAmbience: 5/5\nFood: 5/5\nService: 10/5\n\nExceeding expectations... Kudos.."), ('Rated 4.0', 'RATED\n  One of the best restaurant in Bangalore for great Italian food. Service is really good and staffs are courteous. The place is definitely quite expensive but currently they are a Zomato Gold partner restaurant, hence if you are a gold member of Zomato you wonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t feel the pinch that much.\n\nComing to food, it is really great. I have tried the below dishes and loved all of them.\nPizzas: Salmone and Bismark\nSpaghetti Pescatore and Ravioli di pollo\nSlow cooked duck confit Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 a must try\nChocolate Kahlua Mousse'), ('Rated 4.0', 'RATED\n  Amazing but still would choose BrikOven Pizza in Church street when it comes to pizza. The ambience is really wel lit and has the look and the vibe. It is a little expensive but is worth your time. Perfect for a romantic date!'), ('Rated 5.0', 'RATED\n  Just the perfect place when you are craving Italian cuisine, and personally my favourite Italian restaurant in Bangalore.\nComing to the food, we were first served some complimentary bread with tomato salsa and olive &herb dip. We ordered penne pasta in cream sauce and chicken. They use the basic Italian ingredients, but I have no idea how the pasta was so delicious! Served with crisp garlic bread, it had just right amount of cream sauce.\nWe also ordered Chicken de Toscano, which was grilled chicken stuffed with spinach filling served with ratatouille. The chicken was perfectly tender, the ratatouille good, and I loved the hint of garlic present in the dish.\nNot only was the food delicious but the service was quick and excellent. Will love to visit again!'), ('Rated 5.0', "RATED\n  With elegance at its peak, the top notch decor of this place would put a plethora of high end restaurants to shame.\nMy personal favourite for European/Italian food, it is all set to win your heart with LEGIT lightning service of any and every item on the menu.\nI am a huge fan of the chicken lasagna and the tiramisu is a must try for anyone who doesn't mind some desserts post a nice, subtle meal. Also, the white sauce pasta was one of the bests I've ever had.\nBONUS?\nGot a date? They'll light up a candle right at your table and make your evening memorable.\nCheers!"), ('Rated 5.0', "RATED\n  Humble as hell... Who cares to serve you in 5 minutes.. these guys do. Imagine we walking out of a movie to have a bite. This place is like a quickie... Highly recommended for people to walk into this place during the break at movie time. believe me they will get food faster than PVR.. hands down... Amazing staff...\n\nMr. Suresh the bartender is epic... They just know what you need and will ensure they serve you at the best. Kudos to the place and their live spirit...\n\nCheers!!\n\nDefinitely a place to visit with friends and amazing offers.. almost forgot to mention Mr. Kumar the manager... He's excellent with the entire efforts...\n\nCheers again !!\n\nAmbience: 5/5\nFood: 5/5\nService: 10/5\n\nExceeding expectations... Kudos.."), ('Rated 4.0', 'RATED\n  One of the best restaurant in Bangalore for great Italian food. Service is really good and staffs are courteous. The place is definitely quite expensive but currently they are a Zomato Gold partner restaurant, hence if you are a gold member of Zomato you wonÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t feel the pinch that much.\n\nComing to food, it is really great. I have tried the below dishes and loved all of them.\nPizzas: Salmone and Bismark\nSpaghetti Pescatore and Ravioli di pollo\nSlow cooked duck confit Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96 a must try\nChocolate Kahlua Mousse'), ('Rated 4.0', 'RATED\n  Loved their wines and food. Being an Italian lover, they totally lived up to my expectations. Ambience is very lively, with good music. Great place to just have a quiet Sunday evening !!'), ('Rated 5.0', "RATED\n  Sumptuous place it might be but it's actually worth your time, the food, the service and your Money worth it\nA very good place to visit.\n\nI ordered Rosemary Beef fillet Steak.\nIt was well done. The presentation was very well kept. Kudos to the chef.\n\nAlso the fish of the day, fish Mullet was good but requested it to be well done which was prompt...\n\nRed wine - French... was excellent...\n\nThe first meal after landing in Bangalore was the very good... thought to drop this review before I take off."), ('Rated 4.0', 'RATED\n  Nice ambience.\nDecent food.\nStrong drinks.\nNothing too great but nothing too bad either. The staff was courteous. We ordered a veg starter that was too plain and bland and felt like randomly put veggies on a peice of bread.'), ('Rated 4.0', "RATED\n  We, 5 people went for some evening snacks and drinks there yesterday. Ambience was awesome...\nWe ordered two bucket of beers and pizza was free with that..\n\nTaste of pizza was good even we all tried pizza with boiled egg first time and we all liked it, really good thought n everyone must try it ??\n\nAlong with these we also tried some Bacardi mojito with pineapple and mint, I specially liked it ?\nPoint to be noted, it's little costly ? other than that everything was recommendable...")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
The finger food is great and the yellow lit ambience is very calming. The rooftop according to me is the best place to dine in. The service is pretty fast with reasonable portions.'), ('Rated 3.0', "RATED\n  I had been been to Salut on a Saturday night with a friend. The place was packed with only fee tables unoccupied.\nI checked out all the floors and found the rooftop as the best place to settle in.\n\nSalut is one of the best options available around to chill. It's located near Jayanagar 4th block and is spread across three floors.\n\nSalut offers a variety of food and beverages but lack options for vegetarians.\n\nWe ordered few beers along with peri peri french fries and pizza.\nThe pizza could have been a lot better.\n\nRecommended for its ambience. Will add more shortly.\nCheers!"), ('Rated 4.0', 'RATED\n  Had been there to have quick bites with some beer. The ambience is nice with well lit yellow lights. The service is these best part . Also this place is attached to a mangalorean style restaurant, hence the menu is predominantly based on Mangalore cuisine. They have very limited number of starters. Pizzas are great though . And post 7.30 they have an in house dj who plays good music.'), ('Rated 4.0', 'RATED\n  Was really impressed with the ambiance. They have a large display screen and the vertical garden concept is very good. Food is great. Drinks are little over priced. Try out this place if youÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92re in and around south Bangalore.'), ('Rated 5.0', 'RATED\n  We celebrated my friendÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s birthday here and it was really fun.\n\nMy order-\n\nStarters-\n1. French fries-\nCrispy fries and tasty dips. IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d rate it 10/10.\n\nMains-\n1. Veggie Bell pepper Pizza-\nI was very impressed with the size of the pizza. It had a thin crust and everything was cooked very well. They couldÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92ve added more vegetables, but it was still a good dish. IÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92d rate it 9/10.\n\n2. Penne Alfredo-\nDelicious. Both the pasta and sauce were cooked to perfection. Again, the quantity was worth the price. Definitely give this dish a try.\n\nDrinks-\nVirgin Mojito and Kingfisher Beer Tower-\nI liked them both. Former was refreshing and latter was good.\n\nOverall, We all had a nice time at Salut. The Pricing is on the average side and the staff is very friendly too.'), ('Rated 4.0', "RATED\n  My first experience wasn't great with regular fish lunch menu\n\nThis is my second\nGood ambiance @ Pub\nHighly tasty prawn pudina ghee roast\nCaribbean chicken rice\n\nKeep up\n\n.."), ('Rated 4.0', "RATED\n  Ambience 9/10\nFood 8/10\nDrinks 8/10\nService 8/10\n\nSalut means hi in French but also is a term used while drinking similar to cheers. This restaurant embodies the word 'Salut'. The restaurant has alot of greenery which gives the whole place an outdoors and fresh vide. It feels like an escape from the city when it's in fact situated in the middle of Jayanagar. The drinks and food is really good. The pesto pizza and the wings are a perfect accompaniment for the beer and drinks. It's a great place for a night out or just for a lazy Sunday. Thier brownie is also delicious.\n\nI rate this restaurant a 8/10."), ('Rated 4.0', 'RATED\n  1st what I liked about this restaurant is their ambience and itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s a rooftop restaurant.\nTried the cocktails daiquiri and Long Island ice tea both were perfect to taste.\nHad the corn cheese bites which was yummy too served with mayonnaise dip.\nAnd at last had the pesto pizza which was good with lots of veggies. Although the slices were very thin we couldnÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92t finish it fully.\nWould love to drop in again and try out the other items on the menu.'), ('Rated 1.0', "RATED\n  SO LOUD.\nThere's not even a dancefloor, but the DJ plays loud, obnoxious music in the dining area. It's so loud, one can't even hear the people at the same table. The place is also uncomfortably small to be so loud. We requested the staff to have the volume lowered but they flatly refused. We couldn't even go through with placing the order."), ('Rated 3.0', 'RATED\n  We landed up at Salut this evening at 6.30pm for a quick swig. The place is done up in the usual way of bars and pubs, bang in the middle of Jayanagar 4th block. Unfortunately, there is a lot of incoming noise of the prevalent traffic.\n\nOnly one other table was occupied. We ordered a couple of beers, salted peanuts and chicken strips. They got the order wrong and got the chips instead. Once the correct order came, it was spicy... contrary to what we had requested. The chicken strips were tasty though. The service in general seemed very mediocre.\n\nAll in all, it was an okay experience. Will I go there again? Maybe not. I would definitely recommend they offer better service and attention to detail for the future.'), ('Rated 2.0', 'RATED\n  Its an average place , nothing much to talk about. You can probably skip this place for the time being  and try other places which are well known.'), ('Rated 4.0', "RATED\n  Nice place to drink with friends... wouldn't go there just for the food. Ambience is great when they screen matches.\nMust have: Stir fried prawns"), ('Rated 3.0', 'RATED\n  As we were too early for a movie show we thought of kill some time in a pub and then came across this pub,situated in a very prime location of Jaynagar..Ambience is nice and DJ was playing some good old English classics ..For food we have ordered grilled pepper chicken which was very good taste wise..watermelon mocktail named as tarbooza was very average'), ('Rated 5.0', 'RATED\n  Was really impressed with the ambience. Food was great but the quantity is a bit less still worth it. Open balcony & mild music is great too. Fun place to have a pleasant dinner with family & friends.'), ('Rated 3.0', 'RATED\n  We landed up at Salut this evening at 6.30pm for a quick swig. The place is done up in the usual way of bars and pubs, bang in the middle of Jayanagar 4th block. Unfortunately, there is a lot of incoming noise of the prevalent traffic.\n\nOnly one other table was occupied. We ordered a couple of beers, salted peanuts and chicken strips. They got the order wrong and got the chips instead. Once the correct order came, it was spicy... contrary to what we had requested. The chicken strips were tasty though. The service in general seemed very mediocre.\n\nAll in all, it was an okay experience. Will I go there again? Maybe not. I would definitely recommend they offer better service and attention to detail for the future.'), ('Rated 2.0', 'RATED\n  Its an average place , nothing much to talk about. You can probably skip this place for the time being  and try other places which are well known.'), ('Rated 4.0', "RATED\n  Nice place to drink with friends... wouldn't go there just for the food. Ambience is great when they screen matches.\nMust have: Stir fried prawns"), ('Rated 3.0', 'RATED\n  As we were too early for a movie show we thought of kill some time in a pub and then came across this pub,situated in a very prime location of Jaynagar..Ambience is nice and DJ was playing some good old English classics ..For food we have ordered grilled pepper chicken which was very good taste wise..watermelon mocktail named as tarbooza was very average'), ('Rated 5.0', 'RATED\n  Was really impressed with the ambience. Food was great but the quantity is a bit less still worth it. Open balcony & mild music is great too. Fun place to have a pleasant dinner with family & friends.'), ('Rated 4.0', 'RATED\n  Ambience is great, and I like the starters most , it tastes very good , and should keep more drinks available alcohol.. itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s good to hangout there'), ('Rated 3.0', 'RATED\n  I have hopped almost all the places in jaynagar .\nAs I entered I was really impressed with the ambiance , they have a rooftop with a large display screen for all the sports lovers . I ordered some cocktails and they were well done but not so good.\nThe food on the other hand was a huge disappointment .'), ('Rated 3.0', "RATED\n  As it is at the heart of Jayanagar, I have been waiting to visit this place. As I entered, I was really impressed with the ambience. They have a rooftop with a large display screen for all the sports lovers.\n\nI ordered a few cocktails and they were well done.\n\nThe food on the other hand was a huge let down for me. I ordered pork ribs, egg ghee roast, and chicken tawa fry. The restaurant serves very less portion of food for the amount they charge. The taste is'nt so great and did not impress me much.\n\nAll in all, this restaurant was just an average experience for me."), ('Rated 5.0', 'RATED\n  Finally I found a place in place in Jayanagar with music that loud and great, which increases the buzz.. Food was great.. good Ambiance. Little pocket unfriendly but worth it..!! A Must visit place??'), ('Rated 3.0', "RATED\n  3 is for decent food and that's it nothing good about this place.\nwe were group of 10 people we had ordered some food and we had spent around 45 mins there and boom for our surprise the management tells us to pay the cheque and move out because the bill wasn't more than 1k. Though we had told them we would order sometime later!\nwe didn't want to spoil the celebrations so we didn't argue much and ordered some more food and drinks which summed around 4k and later the waiter gives some cheap look as if we are eating for free. this was one of the worst restaurant I have ever been! careful you guys! everything you do matter we are in digital world act responsibly!\n\nps: food was decent\nand place wasn't that great! (ambiance)"), ('Rated 4.0', 'RATED\n  Ambience is great, and I like the starters most , it tastes very good , and should keep more drinks available alcohol.. itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s good to hangout there'), ('Rated 3.0', 'RATED\n  I have hopped almost all the places in jaynagar .\nAs I entered I was really impressed with the ambiance , they have a rooftop with a large display screen for all the sports lovers . I ordered some cocktails and they were well done but not so good.\nThe food on the other hand was a huge disappointment .'), ('Rated 3.0', "RATED\n  As it is at the heart of Jayanagar, I have been waiting to visit this place. As I entered, I was really impressed with the ambience. They have a rooftop with a large display screen for all the sports lovers.\n\nI ordered a few cocktails and they were well done.\n\nThe food on the other hand was a huge let down for me. I ordered pork ribs, egg ghee roast, and chicken tawa fry. The restaurant serves very less portion of food for the amount they charge. The taste is'nt so great and did not impress me much.\n\nAll in all, this restaurant was just an average experience for me."), ('Rated 5.0', 'RATED\n  Finally I found a place in place in Jayanagar with music that loud and great, which increases the buzz.. Food was great.. good Ambiance. Little pocket unfriendly but worth it..!! A Must visit place??'), ('Rated 3.0', "RATED\n  3 is for decent food and that's it nothing good about this place.\nwe were group of 10 people we had ordered some food and we had spent around 45 mins there and boom for our surprise the management tells us to pay the cheque and move out because the bill wasn't more than 1k. Though we had told them we would order sometime later!\nwe didn't want to spoil the celebrations so we didn't argue much and ordered some more food and drinks which summed around 4k and later the waiter gives some cheap look as if we are eating for free. this was one of the worst restaurant I have ever been! careful you guys! everything you do matter we are in digital world act responsibly!\n\nps: food was decent\nand place wasn't that great! (ambiance)"), ('Rated 4.0', 'RATED\n  Ambience is great, and I like the starters most , it tastes very good , and should keep more drinks available alcohol.. itÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92s good to hangout there'), ('Rated 3.0', 'RATED\n  I have hopped almost all the places in jaynagar .\nAs I entered I was really impressed with the ambiance , they have a rooftop with a large display screen for all the sports lovers . I ordered some cocktails and they were well done but not so good.\nThe food on the other hand was a huge disappointment .'), ('Rated 3.0', "RATED\n  As it is at the heart of Jayanagar, I have been waiting to visit this place. As I entered, I was really impressed with the ambience. They have a rooftop with a large display screen for all the sports lovers.\n\nI ordered a few cocktails and they were well done.\n\nThe food on the other hand was a huge let down for me. I ordered pork ribs, egg ghee roast, and chicken tawa fry. The restaurant serves very less portion of food for the amount they charge. The taste is'nt so great and did not impress me much.\n\nAll in all, this restaurant was just an average experience for me."), ('Rated 5.0', 'RATED\n  Finally I found a place in place in Jayanagar with music that loud and great, which increases the buzz.. Food was great.. good Ambiance. Little pocket unfriendly but worth it..!! A Must visit place??'), ('Rated 3.0', "RATED\n  3 is for decent food and that's it nothing good about this place.\nwe were group of 10 people we had ordered some food and we had spent around 45 mins there and boom for our surprise the management tells us to pay the cheque and move out because the bill wasn't more than 1k. Though we had told them we would order sometime later!\nwe didn't want to spoil the celebrations so we didn't argue much and ordered some more food and drinks which summed around 4k and later the waiter gives some cheap look as if we are eating for free. this was one of the worst restaurant I have ever been! careful you guys! everything you do matter we are in digital world act responsibly!\n\nps: food was decent\nand place wasn't that great! (ambiance)"), ('Rated 4.0', "RATED\n  Finally a Gastro Pub in Jayanagar! Surely needed this kind of pubs in Jayanagar like Koramangala and Indiranagar!\n\nFirstly about Ambience!! Brilliant it is! Like neat and eye catching dining! Rooftop, Family dining and with live screening hall!!?\n\nSecondly Bar menus:\nBeer lovers don't miss to try geist Weiss guy and for hot drinks we choosen Bacardi Superior with Coke and Cranberry Beezer!!??\n\nFinally Food! Food at its best!!!?\nWe ordered Nachoes it was too good for its quantity and Taste followed by cheese Cigar's not that great! French fries its asusal and finally Alfredo sauce White pasta!!?\n\nDon't Mis to visit this in Jayanagar guys!?"), ('Rated 2.0', "RATED\n  The place is too big thought, the food isn't that great, apart from pizza most of their other dishes are below average. Moreover the place is filled with elderly people so youngsters might feel a bit awkward or uncomfortable."), ('Rated 3.0', 'RATED\n  I didnt have that great choice for this place. But ltr while i stepped in...I felt this is a place for a peacefull evening...Open balcony...roof garden..wall garden...mild music !!!! Ambience is awesome....Limited food menu...Nothing great regarding food and drinks....The place is good for its ambience...rest all are just normal...I just got in For a chilled beer and Am done...?')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
Walked in couple of weeks back to grab late lunch.\nThe listing says they?re open all noon to night, but apparently thats only for the sky bar.\nWhich again had no service when we showed up, it was open though, since we had a kid tagging along we wanted to sit in the 2nd floor dining space.\nThe sky bar is a good spot to hang out during cosy days.\n\nSince they were closing most items on the menu werent available, the whole space was to ourselves. The steward who took our order was obnoxious, he could have communicated better about the lack of service/ the space closing timings.\n\nNonetheless ordered for a baby corn starter and a veg pulao, though we were the only ones, the service took extremely long and the food was just average.\n\nBaby corn was fried decent but it was too bland.\n\nPulao\nFor the quality and quantity, the price was a tad bit higher if you ask me, I?d spend the same and get a very very decent pulao outside.'), ('Rated 4.0', 'RATED\n  Beautiful ambience! Loved the roof top. The food quantity is good as well. Tasty vegetarian food. Service is pretty fast. They have candle light as well. Nice place to visit during the evening time.'), ('Rated 4.0', 'RATED\n  Super spicy andhra food.this place is all about green chillis.\nI love to visit all the time while in Bangalore.\nOrdered Egg chilli,Roti and Panner masala.'), ('Rated 4.0', 'RATED\n  Loved the open air ambiance here. The dining area is quite large and can accommodate a large number of people. Both veg and non-veg food were good.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
Very small place with little seating available. I have tried only couple of sweets, which were amazing. Apart from the sweets,they have chats,parathas,chole batura for affordable prices'), ('Rated 4.0', 'RATED\n  Good place for sweets and chaats. Price is reasonable compared to other renowned sweet shops in Bangalore. But they need to improve their paratha section.'), ('Rated 4.0', 'RATED\n  I must say you will get best Mysore pak over here so yummy and it jus melt in your within a second and other sweets are also good in taste.. further over here you get nice chat and variety of paratha..... But Mysore pak steals the show...')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   2
Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ªÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¼Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x88Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x86Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®15Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9aÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8eÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82½Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82½Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¼Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x88Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¼Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x88Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82½Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¨Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ªÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9cÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x94Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x90Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x85Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x93Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82±Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ªÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¿Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82µÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x93Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x85Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9eÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¿Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¼Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82½Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¼Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\xadÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x86Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x93Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x87Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ªÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¼Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x88Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x83Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82©Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¤Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x92Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¾Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x88Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x96Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¿Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82³Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8aÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¨Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x97Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¦Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82§Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82«Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¡Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82Â¥Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x84Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82®Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¨Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x89Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x95Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9dÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x81Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x86Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82£Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x82'), ('Rated 4.0', "RATED\n  Go there to experience warmth and luxury. The sunset is beautiful from up there.\n\nThe service is great. The ambience is perfect, there's something special about the wind there. Their food is good. However, there aren't too many options on the menu. They have a huge collection of alcohol and cigars.\n\nI totally recommend this place. A perfect date place or you could just go there to chill with your friends."), ('Rated 3.0', 'RATED\n  ItÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s a rooftop pub located on top of the ritz-Carlton building. A small place with dim lighting and congested seating. ThereÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s live music being played on weekends. When I went, Fernandez music group was performing. Stephanie and Mark did a really good job. I personally fell in love with Stephanie. And IÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99d say live music is a plus point to the ambiance of this place.\nWe were served by Mr. Glen, who was very polite and professional but he kind of delayed our service. May be because the place was packed.\nThereÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s very few options in food. They served tapioca chips and groundnuts in the beginning.\nWe ordered prawn rolls and dragon chicken. Both the dishes came along with a sweet sauce. The taste was basic, wasnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t really happy with the food.\nOverall, Food-3/5\nService-3/5\nAmbiance-4/5\nI really wish there are some changes in the seating and the menu.'), ('Rated 4.0', 'RATED\n  No doubt,itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s one of the happening place in the city. Be it ambience,be it music itÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99s just worth the every money spent.But on a serious note food menu needs improvisation apart from 5 to 6 basic items i donÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t find anything that great,probably the old menu was much better.Best place for the perfect date and beautiful evenings'), ('Rated 4.0', 'RATED\n  What a place!!! Totally chilled out, great for romantic dates, amazing drinks and the finger food is served steaming hot. We ordered lemongrass prawns and dragon chicken, both were unique in their taste.'), ('Rated 4.0', 'RATED\n  i recently visited Bang\nthe hotel speaks for itself all around the world The Ritz is very classy\nloved the entrance into the hotel\nthe flower arrangements in the lobby stunning\ni was escorted to the bang by a delightful attendant\nupon reaching the top the view was breathtaking not of the city but the bar\nlovely boat shaped tables with blue lights\nnice long bar except i would of preferred having drinks enjoying the view of the city however the positioning of the. bar blocks the view for us guests\nthe bartender have a view of the city but by them facing there backs to the city\ni also found the snack menu not appropriate for a bar\nwhn having drinks one enjoys snacky things\nthe choice was too gourmet\n\noverall experience was ok'), ('Rated 3.0', "RATED\n  This place is LIT! I love the vibe here! What a view!\nWhy is the service so slow, though? Food's a little bland for my taste and the menu is very limited.\nMainly a place to drink and hang, if you've got money to blow, of course."), ('Rated 3.0', 'RATED\n  I visited this place for dinner , ambience of this place is just wow.In food ordered for a tofu starter , quantity wise it was quite adequate. Service is good here, since I visited this place on my bday , staff members gave me one mini cup cake Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8bÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82ºÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¯Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¸Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8f...loved the gesture.'), ('Rated 4.0', "RATED\n  An upscale romantic place right on the terrace of one of the swankiest 5stars in Bengaluru, the place boasts of having some very fine views. Drinks are decently priced and the waiters are polite. Not a lot of lot of food options and you won't get your usual dinner spread here. The ambience is amazing but is usually sparsely populated. Good for dates."), ('Rated 5.0', 'RATED\n  One of the place someone must go kind. The view the bar the place is so hot and that vibe yo get when yo go there had to be experienced, no point explaining which has to be experienced')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 3
Highly underrated place. Let me tell you this place has one of the best Thai curries in the city. Super authentic. Been to both their Indiranagar and Brigade Road outlets a number of times and they are consistent in quality. My recommendations are\n- Thai Curry\n- Pad Thai\n- Thai Papaya Salad\n- Raw Mango Salad with Crispy Fish\n- Rice with prawn and egg\n\nService is quick and the food is very reasonably priced. Must Visit of you are looking for Thai food.\n\nBon Appetit :)'), ('Rated 3.0', 'RATED\n  Amazing Thai food! My first experience was great. Loved the flavors and the simplicity. When I ordered food through zomato, the quantity and food was very average. I really hope that the take away quantity increases, because it was really disappointing to open a box which was half full.'), ('Rated 4.0', "RATED\n  My friend and I stumbled upon this joint on our monthly Church Street visits. It was raining heavily so we entered 5th Avenue Mall with no intention to eat at this joint. But when the server offered us the menu, we decided to give it a shot and ordered soup, crispy tofu salad and sticky rice dessert. \n\nNow I generally hate tofu but their crispy tofu salad was an absolute delight. I am sure I'd be definitely going back for the tofu salad and the refreshingly light soup. \n\nDessert- Didnt like the Sticky rice dessert but it was an interesting order considering it was alarmingly blue. I felt like I was trying into a smurf eating the dessert :P\n\nExtra points for the extremely hospitable servers. They were very helpful and attentive.\n\nFollow Arrey Oh Sambhar on Instagram and Zomato for delicious updates!"), ('Rated 4.0', 'RATED\n  A small place inside 5th Avenue Mall.. but dont judge it by the looks.. they serve some amazing Thai food. Though it is pretty hot inside, but we thoroughly enjoyed our meal. Must haves include -\n\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢ Prawn thai green curry Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢ Pad thai Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c\nÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82¢ Thai papaya salad ( spicy) Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8cÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x91Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8c\n\nLoved the food.. will try more items on my future visits. Service is really amicable and prompt. Pocket pinch around 1k for these dishes.\n\nMust visit place for thai food lovers')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               2
A small outlet in koramangala 6th block near sony world signal.\n\nGood choice of location.\n\nAmbience could have been better.\nService was very quick.\n\nBreakfast to dinner options with very affordable pricing.\n\nTaste was descent.'), ('Rated 4.0', 'RATED\n  Had tried the club kachori which is Sunday special. Loved it. It reminds me of the taste when I was first introduced to the dish. The jalebi however is a turn off. Extra sweet and sloggy'), ('Rated 3.0', 'RATED\n  Nice place to have quick bites (Sweets & slavours).\n\nFreshly made & with neat and clean place.\n\nLike samosa tastes different with nice stuffing must try'), ('Rated 3.5', 'RATED\n  This is my goto place for breakfast most of the mornings. The food choices are limited but tasty and pocket friendly. Poha and poori sabji are a must try. The curry served in a thali meal is mostly cold, which is a huge let down. Recommended.'), ('Rated 4.0', 'RATED\n  Lunch I have done so many times here. It is just amazing, clean, hygienic and taste is also great. Would make it as my permanent lunch place soon.'), ('Rated 4.0', "RATED\n  This place serves authentic samosas and that's why if you are a samosa fan, you must try it. Affordable and delicious. Not too many places in the city know what should go into the filling of a samosa. These people know that though.\n\nFood (Taste) - 4/5\nValue/Money - 5/5\nOn my 'Visit List' again - Yes"), ('Rated 4.0', 'RATED\n  A decent north indian snack place at the 6th block. It seems they recently renovated this place. I had a pav bhaji and alu tikki with jalebi. The food was good. Can give it a try again.'), ('Rated 3.5', 'RATED\n  A good place to have nice, healthy n hygienic vegetarian north indian fast-food dishes freshly prepared and served hot.\n\nYou will see many passing by peoples coming over her for some refreshments. They have good Varieties of sweets for offering as well.Bansuri Sweets'), ('Rated 1.0', 'RATED\n  ZOMATO page says home delivery available , but when i made a call he refused home delivery, and i even asked what is the minimum amount home delivery will be done, and the person on call told me they dont deliver, wrong information is given to customer, i dont know whether its zomato mistake of shop peoples change this status of home delivery'), ('Rated 4.0', 'RATED\n  Like all of its other outlets, this place is perfect for a sumptuous breakfast. Kachori sabji, dhokla and samosa, these are among my favorites! Do go here if some day you have early morning hunger pangs.'), ('Rated 3.5', "RATED\n  Went here on a Sunday morning for breakfast. I have been craving for Kolkata style kachori sabzi from very long & my friend found this place for me. Bliss! Enjoyed eating every bite of it. Though not as perfect as what we get in Kolkata but definitely not a bad option. They also sell Lot's of snack & sweets items. Kachori sabzi is only available on Sunday morning's till 12 & normal aloo poori is available on weekdays. I would not advise anyone to try weekday breakfast there coz its bad. Had also tried dhokla which was also okay types."), ('Rated 3.5', "RATED\n  I just went for a snacks. They have many items in snacks as well as in sweet.\nAs I don't go for oil foods much so I had one samoosa it was good.\nI would say for quick bit it's the best place.\nThe people working there are friendly that's the important part I liked a lot.\nService and Hospitality was good too."), ('Rated 3.5', 'RATED\n  Went here searching for chats as we were not in the mood for a heavy dinner.. This place is small and cozy.. Basically a sweets shop.. Ordered a raj kachori chat and some other chat(forgot the name).. Nicely done and good balance of flavors.. Finished off the meal with a pani puri.. The attenders are friendly and helpful and the place is well lit and clean.. Pocket friendly too.. Will definitely visit to try some more chats especially their parathas and sweets..'), ('Rated 3.0', "RATED\n  A traditional northern chat house. From samosa's to kachori's to all abc chat to xyz chat's. The price is okay. The problem is very little space specially when it gets crowded. No seating arrangement. You can come here for a cup of tea and a samosa with you're buddies!"), ('Rated 3.5', 'RATED\n  Good place to enjoy dhokla, poori sabzi, paranthas, samosa and other snacks. One of Rajasthani outlets in Koramangala, you can please your taste buds at cheap prices. You will love poori sabzi the most, even if the pooris are soaked in oil.'), ('Rated 4.0', 'RATED\n  With a reference from a friend I visited the place for Kachori Sabji (I was told its similar to Bedmi as I used to get in Delhi, though its not exact but looks younger brother of Bedmi). I found the taste to me very good and loved the version. In bangalore its hard to find good north Indian food and I think Bansuri Sweets was able to ignite my taste buds. \n\nWill visit the place again for breakfast. I am still to try its sweets and other stuff'), ('Rated 4.0', "RATED\n  This is a humble chain of authentic Sweets from North india ! Also it serves breakfast, lunch and dinner at a very pocket friendly price. The combination of the thali is amazing and you get a very wholesome meal for a mere Rs. 70/-. The cooks working here are Bengali and Oriya people so the taste is guaranteed. This place is pure veg though offers good variety of chats and snacks in evening time. Overall the spread throughout the day won't disappoint you at any point. Since it is budget chain you will find good ambience in some prime locations else it is all about the food mostly here."), ('Rated 4.0', "RATED\n  This place is a good place for food in regular basis. I usually take lunch here on weekdays. Their thali is a good combo with roti, rice, two curries, dal, raita, and sweets! The roti's r really soft and service is prompt! You should try there sweets too, its yummm! It stands at par with any renowned sweets shop. Just love it here! :)"), ('Rated 1.5', "RATED\n  As with bangalore bandh I had to feel like having chaat ( wrong time for food cravings) .. And was desperately waiting for one shop to be opened that serves chaat. Then I saw Bansuri sweets open,\nAs in the cash counter the guy said all dahi (curd) are available at the moment, I placed order for 4 dahi puri.. I came home to try it eagerly and I was so pissed off with the taste. First one box out of four that I ate from had stale curd and it doesn't taste like dahi puri. This took the entire craving of chaat. And it's worth 40, really?\nI went got it changed but I'm still not happy with the way it's made.. Disappointed :(\n\nFirst experience with unsatisfactory!"), ('Rated 3.5', 'RATED\n  Just the right place for sweet-meat and chaat lovers. The sweets actually taste good and remind you of the flavours from north. Same goes with the chaats, this place offers you a wide variety of chaats. Samosa and kachori chaat are my all time favourite, they taste very fresh. All in all its a good place to have sweets and snacks which is right beside the main road of a busy locality.'), ('Rated 4.0', 'RATED\n  With a reference from a friend I visited the place for Kachori Sabji (I was told its similar to Bedmi as I used to get in Delhi, though its not exact but looks younger brother of Bedmi). I found the taste to me very good and loved the version. In bangalore its hard to find good north Indian food and I think Bansuri Sweets was able to ignite my taste buds. \n\nWill visit the place again for breakfast. I am still to try its sweets and other stuff'), ('Rated 4.0', "RATED\n  This is a humble chain of authentic Sweets from North india ! Also it serves breakfast, lunch and dinner at a very pocket friendly price. The combination of the thali is amazing and you get a very wholesome meal for a mere Rs. 70/-. The cooks working here are Bengali and Oriya people so the taste is guaranteed. This place is pure veg though offers good variety of chats and snacks in evening time. Overall the spread throughout the day won't disappoint you at any point. Since it is budget chain you will find good ambience in some prime locations else it is all about the food mostly here."), ('Rated 4.0', "RATED\n  This place is a good place for food in regular basis. I usually take lunch here on weekdays. Their thali is a good combo with roti, rice, two curries, dal, raita, and sweets! The roti's r really soft and service is prompt! You should try there sweets too, its yummm! It stands at par with any renowned sweets shop. Just love it here! :)"), ('Rated 1.5', "RATED\n  As with bangalore bandh I had to feel like having chaat ( wrong time for food cravings) .. And was desperately waiting for one shop to be opened that serves chaat. Then I saw Bansuri sweets open,\nAs in the cash counter the guy said all dahi (curd) are available at the moment, I placed order for 4 dahi puri.. I came home to try it eagerly and I was so pissed off with the taste. First one box out of four that I ate from had stale curd and it doesn't taste like dahi puri. This took the entire craving of chaat. And it's worth 40, really?\nI went got it changed but I'm still not happy with the way it's made.. Disappointed :(\n\nFirst experience with unsatisfactory!"), ('Rated 3.5', 'RATED\n  Just the right place for sweet-meat and chaat lovers. The sweets actually taste good and remind you of the flavours from north. Same goes with the chaats, this place offers you a wide variety of chaats. Samosa and kachori chaat are my all time favourite, they taste very fresh. All in all its a good place to have sweets and snacks which is right beside the main road of a busy locality.'), ('Rated 4.0', 'RATED\n  With a reference from a friend I visited the place for Kachori Sabji (I was told its similar to Bedmi as I used to get in Delhi, though its not exact but looks younger brother of Bedmi). I found the taste to me very good and loved the version. In bangalore its hard to find good north Indian food and I think Bansuri Sweets was able to ignite my taste buds. \n\nWill visit the place again for breakfast. I am still to try its sweets and other stuff'), ('Rated 4.0', "RATED\n  This is a humble chain of authentic Sweets from North india ! Also it serves breakfast, lunch and dinner at a very pocket friendly price. The combination of the thali is amazing and you get a very wholesome meal for a mere Rs. 70/-. The cooks working here are Bengali and Oriya people so the taste is guaranteed. This place is pure veg though offers good variety of chats and snacks in evening time. Overall the spread throughout the day won't disappoint you at any point. Since it is budget chain you will find good ambience in some prime locations else it is all about the food mostly here."), ('Rated 4.0', "RATED\n  This place is a good place for food in regular basis. I usually take lunch here on weekdays. Their thali is a good combo with roti, rice, two curries, dal, raita, and sweets! The roti's r really soft and service is prompt! You should try there sweets too, its yummm! It stands at par with any renowned sweets shop. Just love it here! :)"), ('Rated 1.5', "RATED\n  As with bangalore bandh I had to feel like having chaat ( wrong time for food cravings) .. And was desperately waiting for one shop to be opened that serves chaat. Then I saw Bansuri sweets open,\nAs in the cash counter the guy said all dahi (curd) are available at the moment, I placed order for 4 dahi puri.. I came home to try it eagerly and I was so pissed off with the taste. First one box out of four that I ate from had stale curd and it doesn't taste like dahi puri. This took the entire craving of chaat. And it's worth 40, really?\nI went got it changed but I'm still not happy with the way it's made.. Disappointed :(\n\nFirst experience with unsatisfactory!"), ('Rated 3.5', 'RATED\n  Just the right place for sweet-meat and chaat lovers. The sweets actually taste good and remind you of the flavours from north. Same goes with the chaats, this place offers you a wide variety of chaats. Samosa and kachori chaat are my all time favourite, they taste very fresh. All in all its a good place to have sweets and snacks which is right beside the main road of a busy locality.'), ('Rated 4.5', "RATED\n  Nice place with economy meal. 70 ? for a thali is good. And let me tell it's unlimited. Good staff. Though place is small but manageable. Usual visitor with Nataraj Srikantaiah"), ('Rated 3.5', 'RATED\n  A nice snack joint at an extremely tactical location. Weekends are crowded and if one wants to bag a basket full then better reach early\nSweets are extremely good - mention Rabri and rajbhog.\nOne must try snacking on all - dhokla, ali bonda, samosa, raj kachori and dahi papri.'), ('Rated 3.5', 'RATED\n  As this was very near to my place I was a regular here not for their sweets but for their snacks. \nThings tried-->\nSamosa,aloo tikki, dhokla,pani puri,veg cutlet ,bhel pur,aloo chat.. \nExcept the bhel puri the other items were really good. 2 samosa will be enough for your snacks.\nTry their jalebi too. Its really nice.\nYou can try their meal too. The owner is really good and take cares of his customers.'), ('Rated 4.0', 'RATED\n  A really good place for chats and sweets. Their chats are tasty.. Very service oriented and friendly. Wish it was a clean place though.\nIts different compared to your usual chat and sweet shop. Affordable prices too.'), ('Rated 3.5', "RATED\n  Great place to get quick snacks or sweets. The place looks clean and well maintained and the prices are great.\nPanipuri was delicious and light.\n\nI'll be going again to test the array of chats that they have to offer."), ('Rated 3.0', 'RATED\n  Breakfast or evening snacks , for chat lovers , this place gives you food which is of good quality and average quantity for an average price.'), ('Rated 3.5', 'RATED\n  Its a small sweet shop located near to the sony signal. Chaat,golgappas taste better than average. Sweets are well presented in the shop. Taste of sweets are good enough.'), ('Rated 3.0', "RATED\n  The quantity of food is ridiculously little for it's price !!!but taste wise good not bad... Seating arrangements are very cramped and it was not very clean when I went there to eat.."), ('Rated 2.5', 'RATED\n  yup a sweet little place....no compromise with the taste-but quantity wise seriously???? The first time i saw the smallest pav with the bhaji - was here :P n the store keeper agreed with me too....some items are overpriced than they deserve..!!'), ('Rated 2.0', "RATED\n  Worst! This is the worst food center I have ever went in bengaluru. The food taste is not so good for the money they charge. I tried rasmalai and that too taste awful. No sugar at all. Don't ever walk into this food junction. There are much better fast food centers nearby."), ('Rated 3.0', 'RATED\n  Breakfast or evening snacks , for chat lovers , this place gives you food which is of good quality and average quantity for an average price.'), ('Rated 3.5', 'RATED\n  Its a small sweet shop located near to the sony signal. Chaat,golgappas taste better than average. Sweets are well presented in the shop. Taste of sweets are good enough.'), ('Rated 3.0', "RATED\n  The quantity of food is ridiculously little for it's price !!!but taste wise good not bad... Seating arrangements are very cramped and it was not very clean when I went there to eat.."), ('Rated 2.5', 'RATED\n  yup a sweet little place....no compromise with the taste-but quantity wise seriously???? The first time i saw the smallest pav with the bhaji - was here :P n the store keeper agreed with me too....some items are overpriced than they deserve..!!'), ('Rated 2.0', "RATED\n  Worst! This is the worst food center I have ever went in bengaluru. The food taste is not so good for the money they charge. I tried rasmalai and that too taste awful. No sugar at all. Don't ever walk into this food junction. There are much better fast food centers nearby."), ('Rated 3.0', 'RATED\n  Breakfast or evening snacks , for chat lovers , this place gives you food which is of good quality and average quantity for an average price.'), ('Rated 3.5', 'RATED\n  Its a small sweet shop located near to the sony signal. Chaat,golgappas taste better than average. Sweets are well presented in the shop. Taste of sweets are good enough.'), ('Rated 3.0', "RATED\n  The quantity of food is ridiculously little for it's price !!!but taste wise good not bad... Seating arrangements are very cramped and it was not very clean when I went there to eat.."), ('Rated 2.5', 'RATED\n  yup a sweet little place....no compromise with the taste-but quantity wise seriously???? The first time i saw the smallest pav with the bhaji - was here :P n the store keeper agreed with me too....some items are overpriced than they deserve..!!'), ('Rated 2.0', "RATED\n  Worst! This is the worst food center I have ever went in bengaluru. The food taste is not so good for the money they charge. I tried rasmalai and that too taste awful. No sugar at all. Don't ever walk into this food junction. There are much better fast food centers nearby."), ('Rated 3.0', 'RATED\n  Breakfast or evening snacks , for chat lovers , this place gives you food which is of good quality and average quantity for an average price.'), ('Rated 3.5', 'RATED\n  Its a small sweet shop located near to the sony signal. Chaat,golgappas taste better than average. Sweets are well presented in the shop. Taste of sweets are good enough.'), ('Rated 3.0', "RATED\n  The quantity of food is ridiculously little for it's price !!!but taste wise good not bad... Seating arrangements are very cramped and it was not very clean when I went there to eat.."), ('Rated 2.5', 'RATED\n  yup a sweet little place....no compromise with the taste-but quantity wise seriously???? The first time i saw the smallest pav with the bhaji - was here :P n the store keeper agreed with me too....some items are overpriced than they deserve..!!'), ('Rated 2.0', "RATED\n  Worst! This is the worst food center I have ever went in bengaluru. The food taste is not so good for the money they charge. I tried rasmalai and that too taste awful. No sugar at all. Don't ever walk into this food junction. There are much better fast food centers nearby."), ('Rated 3.5', 'RATED\n  A nice little place at the Sony World Signal and caters to the taste of the North Indian palate. I go in there almost daily for dinner. They serve "Thalis" for Rs 60, which has more than enough food a hungry person just out of the gym. Once a while its really OK to satisfy the craving for Paranthe and Chole with their Buttery and Hot Gobi/Alu/paneer paranthe. The Chat they serve is decent and not too spicy. Sweets and Dhokla seem too delicious not to take a bite. You shouldnt leave without a Glass of thick lassi or badam milk which is hands down my favourite end to a dinner.'), ('Rated 3.0', "RATED\n  A daily dine in place for people who don't fear heavy oily paranthas filled with lots of calorie.A typical Indian restaurant with cuisines fulfilling every needs of your sweet taste buds. A glassful of thick buttermilk is all it takes you to remind you of your glorious fatty northern counterpart. A small self service shack for day to day takeout which goes very easy on your wallet."), ('Rated 3.5', 'RATED\n  Its a nice a place to have sweets , parathas and lassi . The parathas were tasteful.hte sweets especially the kaju barfis the gulab jamun had authentic taste . It was nice small place to take north Indian breakfast. I wish it had some extra place for sitting . overall a nice place for parathas and sweets. it is also very cheap and service is fast.'), ('Rated 4.0', 'RATED\n  Its a nice little place...especially for calcutta food lovers.\nI liked the samosa a lot... it was piping hot with just the right spiciness.\n\nI also had the poori subzi which was pretty good.. but I still have the try the sunday special club kachoris.\n\nThe bengali style cutlet was also pretty good...and the khasta kachoris looked very tempting.\n\nThey have a good lunch thali/combo with dal, rotis, rice and subzi.\n\nThe live pav bhaji and the stylish puchka counter is also an added attraction\n\nI wish the place was a little more hygienic... and there some more space to sit...\nBut overall its a gr8 place for some good calcutta style chats\n\nCost for 2 would be around Rs.200')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
If you are looking for tasty and value for money food then this is the place for you. They definitely make one of the best dosas (Davangere benne dosas) in whole of bangalore. I have eaten here 100s of times and still crave for more. All the varieties of dosa like benne Kali, open dosa, Benne masala are all good. Their chutney and palya are very good too. Please don't expect 5 star experience here, this is a very simple outlet which gets crowded in the morning and evening times. So you may have to wait for a bit.\nValue for money 5/5\nTaste 5/5")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2
Ordered Baby corn Manchurian... its one of the kind ... Excellent taste and Value for money. will Recommend Veg Starters. Fully satisfied with the food'), ('Rated 5.0', 'RATED\n  dry items are too good in this restaurant. quality and quantity is also resalable.i never had this much tasty food in this location. value for money and healthy food is main thing you will get in this place.')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2
worst taste'), ('Rated 2.0', 'RATED\n  What the hell was this order 1. Panner cheese sandwich worth rs90 and this quantity "Horrible"\n2. Chocolate milkshake worth rs.70 - Not even half that I can get if I go to shop and drink Are you guys think people\'s are fool, I dont even understand what to say on this, I am Just Speechless, Not So worth dude this is no right.... ???'), ('Rated 1.0', 'RATED\n  Very worst. The naan was too thick, not even able to eat. The food was totally wasted. paneer butter masala was also not good. Totally worst service.'), ('Rated 2.0', 'RATED\n  late delivery... not tasty...'), ('Rated 3.0', 'RATED\n  roti was very tight as rubber tyre'), ('Rated 1.0', 'RATED\n  The fried rice is very soggy and the paneer dish doesnt seem fresh!'), ('Rated 3.0', 'RATED\n  resturant not giving raita and gravy on the order'), ('Rated 3.0', 'RATED\n  Medium quantity and not enough ketchup')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2
They say it right yummy and healthy food is never a match, nuts over salad proves it wrong. This is the place where I am going to hang out more. This place is packed with tastiest heathy food, I must say everything I tried here was too good , starting with cold pressed to desserts everything here is mouth watering. Star of the night was peri peri chicken bowl, sugarcane cold pressed,aglio olio noodles. I can go back to this place only for these three. I totally recommend this place and worth every penny.\n\n\ngrubmode.com'), ('Rated 4.0', 'RATED\n  Went here on a Sunday evening.\n\nFood: 4/5 - Everything served was delicious. The spread of the menu was decent, though the portion size was on the smaller size, but considering the price of dishes the portion size is justified. Only disappointing thing was chocolate mousse.\n\nAmbiance: 5/5 - Nice setup. Very cute place and perfect hangout place for friends over tea. They hv many games available which you can play with your group. The decor of the place is also quite good.\n\nService: 4/5 - prompt service and courteous staff.'), ('Rated 4.0', 'RATED\n  4 stars for the chicken burger with beetroot buns. Salads were very average but the place is still good for healthy eating. Quantity is good for everything.'), ('Rated 5.0', "RATED\n  The place is nice and cozy and the food was delicious.\nI tried the mushroom soup and the coffee chicken steak which was a bit sweet and was amazing, I highly recommend it for steak lovers out there.\nIt's a nice place to be with your friends or family."), ('Rated 5.0', 'RATED\n  Being a Gold Member enjoyed the benefit of 1+1. Odered Chicken Sriracha & Seseme Salad and Grilled Fish Steak. The salad was tasty. Veggies were Crunchy & fresh. The dressing of salad was super. Peanuts in the salad gave an extra crunch. In Grilled Fish steak the Fish was perfectly cooked & mosit. The cream in the steak was seasoned well. Mash potatoes taste good. Tiny place with a soothing ambiance. Greenery was there. Staffs were really co-operative. Looking forward to visit again.'), ('Rated 4.0', 'RATED\n  Nice warm friendly decor and very good food, they have built colourful cutlery which adds extra colour to your table and food ... staff is friendly, you have board games to play while your food gets connected, i tried golgappa plate , feta salad , pasta salad and smoothie'), ('Rated 4.0', "RATED\n  A quaint and cute cafe located in Koramangala 5th block.\nThey don't have that extensive menu, but I can say we were not disappointed with whatever we ordered.\nWe ordered broccoli almond soup, hummus platter and Sriracha chicken salad, as we thought of keeping the food a bit light for stomach.\nThe soup was really good, coming to the hummus the beetroot dip really was awesome. Even the salad was brilliant."), ('Rated 3.0', 'RATED\n  We were in mood of eating very light and my son suggested this restaurant .\nHe said salads are good here...\nBut as we were going through the menu we were tempted to eat the chicken steaks and mashed sweet potato...\nWe orders peri peri chicken and grilled chicken steaks...\nIt was good and fresh.\nThe quantity was less but good for 1 person if he is less eater.\nVery small and cozy place...\nAll over enjoyed...'), ('Rated 5.0', "RATED\n  Quaint cafe in Koramangala. Colorful with great vibes.\nQuite a varied and extensive menu but as the name suggests.. they've got a great selection of salads. Not only that.. healthy wrapa, Indian curries, cold pressed juices, pasta and noodles & steaks.\nI ordered the black rice chicken bowl.\nFantastic. Fresh. Filling. Came with a flavorful Indonesian peanut sauce.\nThey've got their food on point.\nPrice points are well thought out.\nGiving them 5 on 5"), ('Rated 5.0', 'RATED\n  Tried Peri Peri Chicken Bowl and Chicken Roulade, both turned out amazing. I specially liked the dip that was served with Chicken Roulade. Chicken was well cooked and moist, so were the bell peppers.\n\nLoved the ambiance too, spacious enough for a large group. And those board games are like a topping to the whole package Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a.\n\nWill definitely visit again soon.'), ('Rated 4.0', "RATED\n  Love this place!! Healthy and light food. You don't come out feeling stuffed or wanting to take a nap. Decor is beautiful and green. And the board games are a bonus."), ('Rated 5.0', 'RATED\n  Ordered in a couscous salad with chicken\nAbsolutely mind blowing\n\nThe couscous was filled with yummy nuts pomogranate colored capsicums olives and some nice fresh herbs\nThe dressing was nice but for me personally I wish I had a little more dressing esp since it was an order in order via the app\n\nThe black bean rice salad was just too good came with a boiled egg and peaunut sauce and a spicy mint sauce\nVery unuadusl and yummy tasting salad\n\nBut I must say quality quantity taste mind blowing total value for money'), ('Rated 4.0', "RATED\n  Fantastic menu with great tasting health food. I especially enjoyed the savory waffles and the cold noodle salad. The juices we're refreshing though be warned can be pulpy unless specified.\n\nThe service was friendly and the ambiance welcoming though noisy. I wish they had more outlets near me so I could make this my go to for lunch.\n\nDessert was a bit of a let down.\n\nWish zomato would allow me to give it a 4.5.\n\nFood 4.5/5\nAmbiance 4/5\nPrice 5/5\nService 5/5"), ('Rated 4.0', 'RATED\n  Nice menu selection. I had the zoodles (was a bit confused that it included actual wheat noodles not just veggie noodles). Pesto dressing very nice, didnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t like the red sauce - just pesto would be enough. Will definitely come back to try more. Would also be nice if things are marked vegan or vegetarian. WasnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t sure if the V means vegan or not.'), ('Rated 4.0', 'RATED\n  Went here on a Sunday for lunch, and that was definitely one of the best decisions of the day. We ordered most of the chef recommended dishes (marked in the menu card) and they tasted so good. Every dish ( including the soup) was freshly made, and hence tasted amazing. But this also meant the dishes took longer to arrive. The cold pressed juices and smoothies were killer. The price was a little on the higher side, but considering the food and the place was lit and healthy, it was worth it.'), ('Rated 4.0', "RATED\n  Love this place!! Healthy and light food. You don't come out feeling stuffed or wanting to take a nap. Decor is beautiful and green. And the board games are a bonus."), ('Rated 5.0', 'RATED\n  Ordered in a couscous salad with chicken\nAbsolutely mind blowing\n\nThe couscous was filled with yummy nuts pomogranate colored capsicums olives and some nice fresh herbs\nThe dressing was nice but for me personally I wish I had a little more dressing esp since it was an order in order via the app\n\nThe black bean rice salad was just too good came with a boiled egg and peaunut sauce and a spicy mint sauce\nVery unuadusl and yummy tasting salad\n\nBut I must say quality quantity taste mind blowing total value for money'), ('Rated 4.0', "RATED\n  Fantastic menu with great tasting health food. I especially enjoyed the savory waffles and the cold noodle salad. The juices we're refreshing though be warned can be pulpy unless specified.\n\nThe service was friendly and the ambiance welcoming though noisy. I wish they had more outlets near me so I could make this my go to for lunch.\n\nDessert was a bit of a let down.\n\nWish zomato would allow me to give it a 4.5.\n\nFood 4.5/5\nAmbiance 4/5\nPrice 5/5\nService 5/5"), ('Rated 4.0', 'RATED\n  Nice menu selection. I had the zoodles (was a bit confused that it included actual wheat noodles not just veggie noodles). Pesto dressing very nice, didnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t like the red sauce - just pesto would be enough. Will definitely come back to try more. Would also be nice if things are marked vegan or vegetarian. WasnÃ\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82¢Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x80Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x99t sure if the V means vegan or not.'), ('Rated 4.0', 'RATED\n  Went here on a Sunday for lunch, and that was definitely one of the best decisions of the day. We ordered most of the chef recommended dishes (marked in the menu card) and they tasted so good. Every dish ( including the soup) was freshly made, and hence tasted amazing. But this also meant the dishes took longer to arrive. The cold pressed juices and smoothies were killer. The price was a little on the higher side, but considering the food and the place was lit and healthy, it was worth it.'), ('Rated 4.0', 'RATED\n  A variety of options for salads and numerous other healthy dishes too. Tried the chicken salad , chicken in Sriracha along with greens tasted great. The chicken was tangy and the nuts and pomegranate made it an unusually good combination.'), ('Rated 5.0', 'RATED\n  Healthy food that is absolutely mouth watering at very affordable price.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d\nA very cute place and they have a tiny entertainment section with games and books!\nThe staff is very friendly and helpful. The salad tasted fresh! We got these coupons on our visit. Would surely come back!'), ('Rated 4.0', 'RATED\n  The food here is delicious must try their chicken wings . I went for a quick bite... the foods filling .. we ended up ordering pasta and the quantity is great. The space is cozy and staffs and service ver perfect over I enjoyed it.'), ('Rated 4.0', 'RATED\n  This cute little place has a an amazing vibe to it. I happened to only have pancakes here, they are nice. Not a fan of pancakes with peanut butter and banana but managed to have it here. The staff is polite too.'), ('Rated 5.0', 'RATED\n  ~On a diet but still wanna binge? Nuts Over Salad is the place to be~\nNuts Over Salads, where healthy meets tasty,offers insane about of items ranging from main course, appetizers, salads, soups, pastas, burgers, cold pressed juices, desserts etc. \n\nI ordered the \n\n- Broccoli & Almond Soup - Amazing, hint of garlic elevates the taste. \n\n- Crunchy Bhel - Oh boy. I think I had several helpings of this. The waiter may have had to physically stop me :P\n\n- Zoodle Bowl - For someone who loves salad, this dish is it\n\n- Chocolate Mousse - velvety with the uniqueness of pistachio sauce. Muah!\n\n- Special Shoutout to the cold pressed juices \n\nFollow @arreyohsambar on Instagram for delicious updates of your city <3'), ('Rated 4.0', 'RATED\n  A variety of options for salads and numerous other healthy dishes too. Tried the chicken salad , chicken in Sriracha along with greens tasted great. The chicken was tangy and the nuts and pomegranate made it an unusually good combination.'), ('Rated 5.0', 'RATED\n  Healthy food that is absolutely mouth watering at very affordable price.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d\nA very cute place and they have a tiny entertainment section with games and books!\nThe staff is very friendly and helpful. The salad tasted fresh! We got these coupons on our visit. Would surely come back!'), ('Rated 4.0', 'RATED\n  The food here is delicious must try their chicken wings . I went for a quick bite... the foods filling .. we ended up ordering pasta and the quantity is great. The space is cozy and staffs and service ver perfect over I enjoyed it.'), ('Rated 4.0', 'RATED\n  This cute little place has a an amazing vibe to it. I happened to only have pancakes here, they are nice. Not a fan of pancakes with peanut butter and banana but managed to have it here. The staff is polite too.'), ('Rated 5.0', 'RATED\n  ~On a diet but still wanna binge? Nuts Over Salad is the place to be~\nNuts Over Salads, where healthy meets tasty,offers insane about of items ranging from main course, appetizers, salads, soups, pastas, burgers, cold pressed juices, desserts etc. \n\nI ordered the \n\n- Broccoli & Almond Soup - Amazing, hint of garlic elevates the taste. \n\n- Crunchy Bhel - Oh boy. I think I had several helpings of this. The waiter may have had to physically stop me :P\n\n- Zoodle Bowl - For someone who loves salad, this dish is it\n\n- Chocolate Mousse - velvety with the uniqueness of pistachio sauce. Muah!\n\n- Special Shoutout to the cold pressed juices \n\nFollow @arreyohsambar on Instagram for delicious updates of your city <3'), ('Rated 4.0', 'RATED\n  A variety of options for salads and numerous other healthy dishes too. Tried the chicken salad , chicken in Sriracha along with greens tasted great. The chicken was tangy and the nuts and pomegranate made it an unusually good combination.'), ('Rated 5.0', 'RATED\n  Healthy food that is absolutely mouth watering at very affordable price.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d\nA very cute place and they have a tiny entertainment section with games and books!\nThe staff is very friendly and helpful. The salad tasted fresh! We got these coupons on our visit. Would surely come back!'), ('Rated 4.0', 'RATED\n  The food here is delicious must try their chicken wings . I went for a quick bite... the foods filling .. we ended up ordering pasta and the quantity is great. The space is cozy and staffs and service ver perfect over I enjoyed it.'), ('Rated 4.0', 'RATED\n  This cute little place has a an amazing vibe to it. I happened to only have pancakes here, they are nice. Not a fan of pancakes with peanut butter and banana but managed to have it here. The staff is polite too.'), ('Rated 5.0', 'RATED\n  ~On a diet but still wanna binge? Nuts Over Salad is the place to be~\nNuts Over Salads, where healthy meets tasty,offers insane about of items ranging from main course, appetizers, salads, soups, pastas, burgers, cold pressed juices, desserts etc. \n\nI ordered the \n\n- Broccoli & Almond Soup - Amazing, hint of garlic elevates the taste. \n\n- Crunchy Bhel - Oh boy. I think I had several helpings of this. The waiter may have had to physically stop me :P\n\n- Zoodle Bowl - For someone who loves salad, this dish is it\n\n- Chocolate Mousse - velvety with the uniqueness of pistachio sauce. Muah!\n\n- Special Shoutout to the cold pressed juices \n\nFollow @arreyohsambar on Instagram for delicious updates of your city <3'), ('Rated 4.0', 'RATED\n  A variety of options for salads and numerous other healthy dishes too. Tried the chicken salad , chicken in Sriracha along with greens tasted great. The chicken was tangy and the nuts and pomegranate made it an unusually good combination.'), ('Rated 5.0', 'RATED\n  Healthy food that is absolutely mouth watering at very affordable price.Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8d\nA very cute place and they have a tiny entertainment section with games and books!\nThe staff is very friendly and helpful. The salad tasted fresh! We got these coupons on our visit. Would surely come back!'), ('Rated 4.0', 'RATED\n  The food here is delicious must try their chicken wings . I went for a quick bite... the foods filling .. we ended up ordering pasta and the quantity is great. The space is cozy and staffs and service ver perfect over I enjoyed it.'), ('Rated 4.0', 'RATED\n  This cute little place has a an amazing vibe to it. I happened to only have pancakes here, they are nice. Not a fan of pancakes with peanut butter and banana but managed to have it here. The staff is polite too.'), ('Rated 5.0', 'RATED\n  ~On a diet but still wanna binge? Nuts Over Salad is the place to be~\nNuts Over Salads, where healthy meets tasty,offers insane about of items ranging from main course, appetizers, salads, soups, pastas, burgers, cold pressed juices, desserts etc. \n\nI ordered the \n\n- Broccoli & Almond Soup - Amazing, hint of garlic elevates the taste. \n\n- Crunchy Bhel - Oh boy. I think I had several helpings of this. The waiter may have had to physically stop me :P\n\n- Zoodle Bowl - For someone who loves salad, this dish is it\n\n- Chocolate Mousse - velvety with the uniqueness of pistachio sauce. Muah!\n\n- Special Shoutout to the cold pressed juices \n\nFollow @arreyohsambar on Instagram for delicious updates of your city <3'), ('Rated 3.0', 'RATED\n  Ordered burito, zoodle box with mushroom soup and powerhouse bowl. Unfortunately i am bit disappointed with the taste. Neatly packed. It took more than 1 hour to deliver.\nBurito was the most disappointing. That was just bland. Veggies were of decent quality. Mushroom soup was average. Quantity was good.'), ('Rated 4.0', 'RATED\n  In a late afternoon was craving for some good italian delicacies. Finally reached here and ordered few items. Our orders were vegetable quessadila, chicken penne arrabiata and Peri Peri chicken steak. Quessadila was okay in taste. Pasta and steak both were awesome.\n\nService could be improved. Ambience is great and i liked the green theme both inside and outside.'), ('Rated 3.0', 'RATED\n  Ordered burito, zoodle box with mushroom soup and powerhouse bowl. Unfortunately i am bit disappointed with the taste. Neatly packed. It took more than 1 hour to deliver.\nBurito was the most disappointing. That was just bland. Veggies were of decent quality. Mushroom soup was average. Quantity was good.'), ('Rated 4.0', 'RATED\n  In a late afternoon was craving for some good italian delicacies. Finally reached here and ordered few items. Our orders were vegetable quessadila, chicken penne arrabiata and Peri Peri chicken steak. Quessadila was okay in taste. Pasta and steak both were awesome.\n\nService could be improved. Ambience is great and i liked the green theme both inside and outside.'), ('Rated 3.0', 'RATED\n  Ordered burito, zoodle box with mushroom soup and powerhouse bowl. Unfortunately i am bit disappointed with the taste. Neatly packed. It took more than 1 hour to deliver.\nBurito was the most disappointing. That was just bland. Veggies were of decent quality. Mushroom soup was average. Quantity was good.'), ('Rated 4.0', 'RATED\n  In a late afternoon was craving for some good italian delicacies. Finally reached here and ordered few items. Our orders were vegetable quessadila, chicken penne arrabiata and Peri Peri chicken steak. Quessadila was okay in taste. Pasta and steak both were awesome.\n\nService could be improved. Ambience is great and i liked the green theme both inside and outside.'), ('Rated 3.0', 'RATED\n  Ordered burito, zoodle box with mushroom soup and powerhouse bowl. Unfortunately i am bit disappointed with the taste. Neatly packed. It took more than 1 hour to deliver.\nBurito was the most disappointing. That was just bland. Veggies were of decent quality. Mushroom soup was average. Quantity was good.'), ('Rated 4.0', 'RATED\n  In a late afternoon was craving for some good italian delicacies. Finally reached here and ordered few items. Our orders were vegetable quessadila, chicken penne arrabiata and Peri Peri chicken steak. Quessadila was okay in taste. Pasta and steak both were awesome.\n\nService could be improved. Ambience is great and i liked the green theme both inside and outside.'), ('Rated 3.0', 'RATED\n  Ordered burito, zoodle box with mushroom soup and powerhouse bowl. Unfortunately i am bit disappointed with the taste. Neatly packed. It took more than 1 hour to deliver.\nBurito was the most disappointing. That was just bland. Veggies were of decent quality. Mushroom soup was average. Quantity was good.'), ('Rated 4.0', 'RATED\n  In a late afternoon was craving for some good italian delicacies. Finally reached here and ordered few items. Our orders were vegetable quessadila, chicken penne arrabiata and Peri Peri chicken steak. Quessadila was okay in taste. Pasta and steak both were awesome.\n\nService could be improved. Ambience is great and i liked the green theme both inside and outside.'), ('Rated 3.0', 'RATED\n  Ordered burito, zoodle box with mushroom soup and powerhouse bowl. Unfortunately i am bit disappointed with the taste. Neatly packed. It took more than 1 hour to deliver.\nBurito was the most disappointing. That was just bland. Veggies were of decent quality. Mushroom soup was average. Quantity was good.'), ('Rated 4.0', 'RATED\n  In a late afternoon was craving for some good italian delicacies. Finally reached here and ordered few items. Our orders were vegetable quessadila, chicken penne arrabiata and Peri Peri chicken steak. Quessadila was okay in taste. Pasta and steak both were awesome.\n\nService could be improved. Ambience is great and i liked the green theme both inside and outside.'), ('Rated 4.0', "RATED\n  Nice quiet place at a corner. Frankly it would be difficult to find it were it not for Zomato.\nI am a person who usually prefers salads for light snacks but man they have a menu which can be filling even for dinner!\nPrices in the actual menu are cheaper than what's displayed on Zomato. Salads are for 180 on an average without add ons. And I think that's a fair pricing.\nThey salads were amazing! Ambiance was peaceful and good. The drink was not good and I'm not ordering it again! Maybe it tastes that way but we'll, it was not for my taste buds!\n\nBlack Rice Salad -5/5\nCauliflower rice salad - 5/5\nHorchata - 1/5\nAmbiance - 4/5\nService - 4/5"), ('Rated 4.0', 'RATED\n  Loved the simple ambience.liked the King and Queen card design indicating the rest room and the use of greenery minimalistic through but effective .\nI ordered a glass of Horchata , a Mexican drink with Vanilla and cinnamon quite refreshing followed by a Kombucha which was fermented with yeast .Both were of refreshing nature .\nI also picked up two nutrition energy bars Anderson inhouse of almond and raisin and a bottle of peanut butter dark as well for home .\nThe salad options looked good and so did the other stuff ..\nSo will be back here to try out other stuff as well'), ('Rated 5.0', 'RATED\n  Friendly staff small cafe yummy soup , salads main course , desserts loved it gud for friends and family get together .... They also accept party orders lovely restaurant Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a'), ('Rated 4.0', "RATED\n  Nice quiet place at a corner. Frankly it would be difficult to find it were it not for Zomato.\nI am a person who usually prefers salads for light snacks but man they have a menu which can be filling even for dinner!\nPrices in the actual menu are cheaper than what's displayed on Zomato. Salads are for 180 on an average without add ons. And I think that's a fair pricing.\nThey salads were amazing! Ambiance was peaceful and good. The drink was not good and I'm not ordering it again! Maybe it tastes that way but we'll, it was not for my taste buds!\n\nBlack Rice Salad -5/5\nCauliflower rice salad - 5/5\nHorchata - 1/5\nAmbiance - 4/5\nService - 4/5"), ('Rated 4.0', 'RATED\n  Loved the simple ambience.liked the King and Queen card design indicating the rest room and the use of greenery minimalistic through but effective .\nI ordered a glass of Horchata , a Mexican drink with Vanilla and cinnamon quite refreshing followed by a Kombucha which was fermented with yeast .Both were of refreshing nature .\nI also picked up two nutrition energy bars Anderson inhouse of almond and raisin and a bottle of peanut butter dark as well for home .\nThe salad options looked good and so did the other stuff ..\nSo will be back here to try out other stuff as well'), ('Rated 5.0', 'RATED\n  Friendly staff small cafe yummy soup , salads main course , desserts loved it gud for friends and family get together .... They also accept party orders lovely restaurant Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a'), ('Rated 4.0', "RATED\n  Nice quiet place at a corner. Frankly it would be difficult to find it were it not for Zomato.\nI am a person who usually prefers salads for light snacks but man they have a menu which can be filling even for dinner!\nPrices in the actual menu are cheaper than what's displayed on Zomato. Salads are for 180 on an average without add ons. And I think that's a fair pricing.\nThey salads were amazing! Ambiance was peaceful and good. The drink was not good and I'm not ordering it again! Maybe it tastes that way but we'll, it was not for my taste buds!\n\nBlack Rice Salad -5/5\nCauliflower rice salad - 5/5\nHorchata - 1/5\nAmbiance - 4/5\nService - 4/5"), ('Rated 4.0', 'RATED\n  Loved the simple ambience.liked the King and Queen card design indicating the rest room and the use of greenery minimalistic through but effective .\nI ordered a glass of Horchata , a Mexican drink with Vanilla and cinnamon quite refreshing followed by a Kombucha which was fermented with yeast .Both were of refreshing nature .\nI also picked up two nutrition energy bars Anderson inhouse of almond and raisin and a bottle of peanut butter dark as well for home .\nThe salad options looked good and so did the other stuff ..\nSo will be back here to try out other stuff as well'), ('Rated 5.0', 'RATED\n  Friendly staff small cafe yummy soup , salads main course , desserts loved it gud for friends and family get together .... They also accept party orders lovely restaurant Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a'), ('Rated 4.0', "RATED\n  Nice quiet place at a corner. Frankly it would be difficult to find it were it not for Zomato.\nI am a person who usually prefers salads for light snacks but man they have a menu which can be filling even for dinner!\nPrices in the actual menu are cheaper than what's displayed on Zomato. Salads are for 180 on an average without add ons. And I think that's a fair pricing.\nThey salads were amazing! Ambiance was peaceful and good. The drink was not good and I'm not ordering it again! Maybe it tastes that way but we'll, it was not for my taste buds!\n\nBlack Rice Salad -5/5\nCauliflower rice salad - 5/5\nHorchata - 1/5\nAmbiance - 4/5\nService - 4/5"), ('Rated 4.0', 'RATED\n  Loved the simple ambience.liked the King and Queen card design indicating the rest room and the use of greenery minimalistic through but effective .\nI ordered a glass of Horchata , a Mexican drink with Vanilla and cinnamon quite refreshing followed by a Kombucha which was fermented with yeast .Both were of refreshing nature .\nI also picked up two nutrition energy bars Anderson inhouse of almond and raisin and a bottle of peanut butter dark as well for home .\nThe salad options looked good and so did the other stuff ..\nSo will be back here to try out other stuff as well'), ('Rated 5.0', 'RATED\n  Friendly staff small cafe yummy soup , salads main course , desserts loved it gud for friends and family get together .... They also accept party orders lovely restaurant Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a'), ('Rated 4.0', "RATED\n  Nice quiet place at a corner. Frankly it would be difficult to find it were it not for Zomato.\nI am a person who usually prefers salads for light snacks but man they have a menu which can be filling even for dinner!\nPrices in the actual menu are cheaper than what's displayed on Zomato. Salads are for 180 on an average without add ons. And I think that's a fair pricing.\nThey salads were amazing! Ambiance was peaceful and good. The drink was not good and I'm not ordering it again! Maybe it tastes that way but we'll, it was not for my taste buds!\n\nBlack Rice Salad -5/5\nCauliflower rice salad - 5/5\nHorchata - 1/5\nAmbiance - 4/5\nService - 4/5"), ('Rated 4.0', 'RATED\n  Loved the simple ambience.liked the King and Queen card design indicating the rest room and the use of greenery minimalistic through but effective .\nI ordered a glass of Horchata , a Mexican drink with Vanilla and cinnamon quite refreshing followed by a Kombucha which was fermented with yeast .Both were of refreshing nature .\nI also picked up two nutrition energy bars Anderson inhouse of almond and raisin and a bottle of peanut butter dark as well for home .\nThe salad options looked good and so did the other stuff ..\nSo will be back here to try out other stuff as well'), ('Rated 5.0', 'RATED\n  Friendly staff small cafe yummy soup , salads main course , desserts loved it gud for friends and family get together .... They also accept party orders lovely restaurant Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a'), ('Rated 4.0', "RATED\n  Nice quiet place at a corner. Frankly it would be difficult to find it were it not for Zomato.\nI am a person who usually prefers salads for light snacks but man they have a menu which can be filling even for dinner!\nPrices in the actual menu are cheaper than what's displayed on Zomato. Salads are for 180 on an average without add ons. And I think that's a fair pricing.\nThey salads were amazing! Ambiance was peaceful and good. The drink was not good and I'm not ordering it again! Maybe it tastes that way but we'll, it was not for my taste buds!\n\nBlack Rice Salad -5/5\nCauliflower rice salad - 5/5\nHorchata - 1/5\nAmbiance - 4/5\nService - 4/5"), ('Rated 4.0', 'RATED\n  Loved the simple ambience.liked the King and Queen card design indicating the rest room and the use of greenery minimalistic through but effective .\nI ordered a glass of Horchata , a Mexican drink with Vanilla and cinnamon quite refreshing followed by a Kombucha which was fermented with yeast .Both were of refreshing nature .\nI also picked up two nutrition energy bars Anderson inhouse of almond and raisin and a bottle of peanut butter dark as well for home .\nThe salad options looked good and so did the other stuff ..\nSo will be back here to try out other stuff as well'), ('Rated 5.0', 'RATED\n  Friendly staff small cafe yummy soup , salads main course , desserts loved it gud for friends and family get together .... They also accept party orders lovely restaurant Ã\x83Â\x83Ã\x82Â\x83Ã\x83Â\x82Ã\x82°Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x9fÃ\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x98Ã\x83Â\x83Ã\x82Â\x82Ã\x83Â\x82Ã\x82Â\x8a')]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
Horrible service ! They called me after 84mins of placing the order asking for the address. Didn't refund the money as well. Terrible. I would never order from them."), ('Rated 2.0', 'RATED\n  Food was delivered an hour late - Food quality was average'), ('Rated 4.0', "RATED\n  Recently I have been trying out Zomato's online ordering app. It's pretty awesome actually...\n\nSo, I happened to come across this outlet with good rating one lazy day, and thaught of helping my test buds with something new.\n\nHence I opted for a Low carb Mexican chicken cauliflower fried rice. I surely was eager to taste it, but totally bowled when the food was delivered at my doorstep.\n\nI imagined it would be something healthy, but did not imagine a fried rice without rice. It was completely cooked with grated cauliflower and had chicken pieces. The taste was good.\n\nMy only disappointment was the quantity of the food was less as compared to the price.\n\nTeam, thanks for surprising me with out of the box cooking.")]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           6
Name: Reviews, dtype: int64
In [186]:
# Picking random reviews from the samples to analyse
# fitting the review as sentence for analysis
rev = ["Best place to take your family or the one you have a comfortable relationship with. A no-frills place serving good quality but not extraordinary food.",
      "Awesome place with good ambience and service food was superb , rabbidi was finger licking... A must try ",
      "Visited this place for lunch.. we opted ala carte.. let me remind you the place is quite expensive for the amount it serves. We ordered 2 naan, one malai kofta, 2 shikanji and the bill was 1250 bucks.",
      "I really did not like it.. it is far from fine dining.. it will just burn a hole in your pocket for no reason.",
      "I love the food, but when it comes cleanliness it is zero. Take away is good. But being a budget friendly place, i love it. I am not saying the food is amazing , but yeah it is good. They definitely need a revamp."
      "This place was chosen to give farewell for one of the team member. Thoroughly enjoyed the time we didn't realized of spending 4 hours with good food, amazing service. The staff is very attentive, always smiling & ready to provide best service.",
      "winged by for an album launch of a friend's friend band called Perfect Strangers. Gillys has a fantastic sound system and is quite the place for gigs! Friendly on the pocket for a Saturday night kinda place. Must visit!",
      "This place has good food. Especially the peanuts and other finger foods. However pizza was disappointing.", 
      "Paneer Tikka: it is no less than non veg starters, it just as spicy and delicious.",
      "Best place and been there almost 9-10 times . Saturday night for me it is Gilly's Night. Love the music, crowd and the ambience. Staffs are friendly and courteous. It is not very expensive. Food quality is pretty good and their beers are really nice unlike the other places. I always had a great time in Gilly's. Love you Gilly's.",
      "Although it was a small kiosk but the street food lovers will love it.\nThe food/rolls are delicious, especially the egg-chicken roll is delightful.",
      "Nice and homely food at affordable cost\n\nSmall and good food joint in koramangala 8th block. They are open till 12 in the night biriyani is tasty. They have good choice of Chinese cuisine also."]
In [187]:
sid = SentimentIntensityAnalyzer()
for sentence in rev:
    print(sentence)
    ss = sid.polarity_scores(sentence)
    for k in ss:
        print('{0}: {1}, '.format(k, ss[k]), end = '\n')
    print()
Best place to take your family or the one you have a comfortable relationship with. A no-frills place serving good quality but not extraordinary food.
neg: 0.0, 
neu: 0.749, 
pos: 0.251, 
compound: 0.6908, 

Awesome place with good ambience and service food was superb , rabbidi was finger licking... A must try 
neg: 0.0, 
neu: 0.539, 
pos: 0.461, 
compound: 0.9022, 

Visited this place for lunch.. we opted ala carte.. let me remind you the place is quite expensive for the amount it serves. We ordered 2 naan, one malai kofta, 2 shikanji and the bill was 1250 bucks.
neg: 0.0, 
neu: 1.0, 
pos: 0.0, 
compound: 0.0, 

I really did not like it.. it is far from fine dining.. it will just burn a hole in your pocket for no reason.
neg: 0.18, 
neu: 0.749, 
pos: 0.071, 
compound: -0.4164, 

I love the food, but when it comes cleanliness it is zero. Take away is good. But being a budget friendly place, i love it. I am not saying the food is amazing , but yeah it is good. They definitely need a revamp.This place was chosen to give farewell for one of the team member. Thoroughly enjoyed the time we didn't realized of spending 4 hours with good food, amazing service. The staff is very attentive, always smiling & ready to provide best service.
neg: 0.0, 
neu: 0.515, 
pos: 0.485, 
compound: 0.9964, 

winged by for an album launch of a friend's friend band called Perfect Strangers. Gillys has a fantastic sound system and is quite the place for gigs! Friendly on the pocket for a Saturday night kinda place. Must visit!
neg: 0.0, 
neu: 0.691, 
pos: 0.309, 
compound: 0.9358, 

This place has good food. Especially the peanuts and other finger foods. However pizza was disappointing.
neg: 0.159, 
neu: 0.697, 
pos: 0.144, 
compound: -0.0772, 

Paneer Tikka: it is no less than non veg starters, it just as spicy and delicious.
neg: 0.111, 
neu: 0.704, 
pos: 0.186, 
compound: 0.3612, 

Best place and been there almost 9-10 times . Saturday night for me it is Gilly's Night. Love the music, crowd and the ambience. Staffs are friendly and courteous. It is not very expensive. Food quality is pretty good and their beers are really nice unlike the other places. I always had a great time in Gilly's. Love you Gilly's.
neg: 0.0, 
neu: 0.597, 
pos: 0.403, 
compound: 0.9866, 

Although it was a small kiosk but the street food lovers will love it.
The food/rolls are delicious, especially the egg-chicken roll is delightful.
neg: 0.0, 
neu: 0.479, 
pos: 0.521, 
compound: 0.974, 

Nice and homely food at affordable cost

Small and good food joint in koramangala 8th block. They are open till 12 in the night biriyani is tasty. They have good choice of Chinese cuisine also.
neg: 0.068, 
neu: 0.729, 
pos: 0.202, 
compound: 0.6908,